diff options
| author | Chris Lu <chrislusf@users.noreply.github.com> | 2022-05-17 23:48:57 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-05-17 23:48:57 -0700 |
| commit | 8efe55f9817ef79ae2cce1c15c922c7d3b119a21 (patch) | |
| tree | cd2c9b77d7d1c45f15a2210c2ec2df62e86b4537 /weed/command | |
| parent | 92590d60ff72e54f7fb9df79b84a3de719fb875f (diff) | |
| parent | 8e2426a879a9595cc8c9f74fcd2f615641bef48a (diff) | |
| download | seaweedfs-8efe55f9817ef79ae2cce1c15c922c7d3b119a21.tar.xz seaweedfs-8efe55f9817ef79ae2cce1c15c922c7d3b119a21.zip | |
Merge pull request #3059 from guol-fnst/avoid_dup_vol
avoid loading duplicated volume directory
Diffstat (limited to 'weed/command')
| -rw-r--r-- | weed/command/volume.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/weed/command/volume.go b/weed/command/volume.go index 645c698b1..b1455352c 100644 --- a/weed/command/volume.go +++ b/weed/command/volume.go @@ -267,7 +267,7 @@ func (v VolumeServerOptions) startVolumeServer(volumeFolders, maxVolumeCounts, v stopChan := make(chan bool) grace.OnInterrupt(func() { - fmt.Println("volume server has be killed") + fmt.Println("volume server has been killed") // Stop heartbeats if !volumeServer.StopHeartbeat() { |
