Explorar el Código

better error name for watcher

Xiang Li hace 12 años
padre
commit
09cfd89298
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      command.go

+ 1 - 1
command.go

@@ -102,7 +102,7 @@ func (c *WatchCommand) Apply(server *raft.Server) (interface{}, error) {
 	res := <-watcher.C
 
 	if res == nil {
-		return nil, fmt.Errorf("watcher is cleared")
+		return nil, fmt.Errorf("Clearing watch")
 	}
 
 	return json.Marshal(res)