diff options
author | Nick White <git@njw.name> | 2019-09-17 17:21:16 +0100 |
---|---|---|
committer | Nick White <git@njw.name> | 2019-09-17 17:21:16 +0100 |
commit | e2e84271e6e013cadb59556f32f96babe819bc38 (patch) | |
tree | d6cb53aa97ca7269e27b76d6c94076c2126d36c8 | |
parent | 5fe9dc3a403cdfe0b41830aac16ef8b02f7e0e4e (diff) |
gofmt
-rw-r--r-- | bookpipeline/cmd/bookpipeline/main.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bookpipeline/cmd/bookpipeline/main.go b/bookpipeline/cmd/bookpipeline/main.go index f8b0b68..de9b072 100644 --- a/bookpipeline/cmd/bookpipeline/main.go +++ b/bookpipeline/cmd/bookpipeline/main.go @@ -319,7 +319,7 @@ func processBook(msg bookpipeline.Qmsg, conn Pipeliner, process func(chan string // check whether we're using a newer msg handle select { - case m, ok := <-msgc : + case m, ok := <-msgc: if ok { msg = m conn.GetLogger().Println("Using new message handle to delete message from old queue") |