summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick White <git@njw.name>2020-03-30 13:51:46 +0100
committerNick White <git@njw.name>2020-03-30 13:51:46 +0100
commit52903b8dd02ca94b12dfb837ae0b7f5087361b6d (patch)
treeab314626c6535ed89ed0d3c9789fa8aa511c4d65
parentd2a9a6ad2678cc401b60c48afb2211b5cf1e852e (diff)
[bookpipeline] Fix hang bug when restarting shutdown timer
-rw-r--r--cmd/bookpipeline/main.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/cmd/bookpipeline/main.go b/cmd/bookpipeline/main.go
index 24645a6..daa6ab9 100644
--- a/cmd/bookpipeline/main.go
+++ b/cmd/bookpipeline/main.go
@@ -636,9 +636,9 @@ func stopTimer(t *time.Timer) {
}
func restartTimer(t *time.Timer) {
- if !t.Stop() {
- <-t.C
- }
+ //if !t.Stop() {
+ // <-t.C
+ //}
t.Reset(TimeBeforeShutdown)
}