Browse Source

fix logs

pull/1444/head
Chris Lu 4 years ago
parent
commit
9dae4e9d3e
  1. 4
      weed/command/volume.go

4
weed/command/volume.go

@ -229,10 +229,10 @@ func (v VolumeServerOptions) startVolumeServer(volumeFolders, maxVolumeCounts, v
var startTime time.Time
// Stop heartbeats
glog.V(0).Infof("stop send heartbeat and sleep %d seconds ...", v.preStopSeconds)
glog.V(0).Infof("stop send heartbeat and sleep %d seconds ...", *v.preStopSeconds)
volumeServer.SendHeartbeat = false
time.Sleep(time.Duration(*v.preStopSeconds) * time.Second)
glog.V(0).Infof("end sleep %d sec", v.preStopSeconds)
glog.V(0).Infof("end sleep %d sec", *v.preStopSeconds)
// firstly, stop the public http service to prevent from receiving new user request
if nil != publicHttpDown {
startTime = time.Now()

Loading…
Cancel
Save