Browse Source

better error name for watcher

Xiang Li 12 years ago
parent
commit
09cfd89298
1 changed files with 1 additions and 1 deletions
  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)