summaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
authorPaul Buetow <pbuetow@mimecast.com>2021-12-03 12:27:11 +0000
committerPaul Buetow <pbuetow@mimecast.com>2021-12-03 12:27:11 +0000
commitdecb0434e84b34777d289f7f639e8d2363457417 (patch)
tree05a29a5121bdd615861a39aeb8f011016fc9fcb4 /cmd
parentf983225e4d1d292622f0d3b7c8ab6396a944b9dd (diff)
update TODO comments
Diffstat (limited to 'cmd')
-rw-r--r--cmd/dtail/main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/dtail/main.go b/cmd/dtail/main.go
index ec6a5cc..bd8eb87 100644
--- a/cmd/dtail/main.go
+++ b/cmd/dtail/main.go
@@ -85,7 +85,7 @@ func main() {
ctx, cancel := context.WithCancel(context.Background())
if shutdownAfter > 0 {
- // TODO: This does not work (auto shutdown)
+ // NEXT: This does not work (auto shutdown)
ctx, cancel = context.WithTimeout(ctx, time.Duration(shutdownAfter)*time.Second)
defer cancel()
}