From c1c54788fba2e307aac993660b460499296afa06 Mon Sep 17 00:00:00 2001 From: Aaron Jacobs Date: Wed, 18 Mar 2015 13:58:23 +1100 Subject: [PATCH] Updated a comment that used to be a TODO. --- server.go | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/server.go b/server.go index 67fcba1..a7835fa 100644 --- a/server.go +++ b/server.go @@ -107,8 +107,10 @@ func (s *server) handleFuseRequest(fuseReq bazilfuse.Request) { // Log the request. s.logger.Println("Received:", fuseReq) - // TODO(jacobsa): Support cancellation when interrupted, if we can coax the - // system into reproducing such requests. + // If it becomes important, we can support cancellation when interrupted (cf. + // http://goo.gl/C08eAv). If we want to do this, we should find some way to + // coax the system into reproducing such requests so we can test the + // behavior. ctx := context.Background() // Attempt to handle it.