summaryrefslogtreecommitdiff
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
parentf983225e4d1d292622f0d3b7c8ab6396a944b9dd (diff)
update TODO comments
-rw-r--r--cmd/dtail/main.go2
-rw-r--r--docker/Dockerfile3
2 files changed, 2 insertions, 3 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()
}
diff --git a/docker/Dockerfile b/docker/Dockerfile
index 06b8f89..c3b0092 100644
--- a/docker/Dockerfile
+++ b/docker/Dockerfile
@@ -6,8 +6,7 @@ FROM fedora:35
RUN mkdir -p /etc/dserver /var/run/dserver/cache /var/log/dserver
ADD ./dtail.json /etc/dserver/dtail.json
-# TODO: Compile dserver in a container as well, as otherwise might have glibc
-# errors.
+# NEXT: Compile dserver in a container as well, as otherwise might have glibc errors.
ADD ./dserver /usr/local/bin/dserver
ADD ./mapr_testdata.log /var/log/mapr_testdata.log