diff options
| author | stlpmo-jn <hq-STLPMO@chinaunicom.cn> | 2019-04-11 09:53:31 +0800 |
|---|---|---|
| committer | stlpmo-jn <hq-STLPMO@chinaunicom.cn> | 2019-04-11 09:53:31 +0800 |
| commit | f2031884f0a5e070ac1b16c968ece1664e20aafc (patch) | |
| tree | 71d1d77306de013f3899cc88c5fb27c616e15057 /weed/server/volume_grpc_replicate.go | |
| parent | c1a0403da2b0fb6f4eebc48d8dc621435c6e0b12 (diff) | |
| download | seaweedfs-f2031884f0a5e070ac1b16c968ece1664e20aafc.tar.xz seaweedfs-f2031884f0a5e070ac1b16c968ece1664e20aafc.zip | |
fix bug : CI build failed
Diffstat (limited to 'weed/server/volume_grpc_replicate.go')
| -rw-r--r-- | weed/server/volume_grpc_replicate.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/weed/server/volume_grpc_replicate.go b/weed/server/volume_grpc_replicate.go index c991a496e..c641755d0 100644 --- a/weed/server/volume_grpc_replicate.go +++ b/weed/server/volume_grpc_replicate.go @@ -121,7 +121,7 @@ func checkCopyFiles(originFileInf *volume_server_pb.ReadVolumeFileStatusResponse } func writeToFile(client volume_server_pb.VolumeServer_CopyFileClient, fileName string) error { - glog.V(4).Infof("writing to ", fileName) + glog.V(4).Infof("writing to %s", fileName) dst, err := os.OpenFile(fileName, os.O_WRONLY|os.O_CREATE|os.O_TRUNC, 0644) if err != nil { return nil |
