etcdserver: set -> existsSet

release-2.0
Blake Mizerany 2014-08-27 12:04:00 -07:00 committed by Yicheng Qin
parent 78d7b38a17
commit 2d3cef2496
1 changed files with 2 additions and 2 deletions

View File

@ -119,9 +119,9 @@ func (s *Server) apply(ctx context.Context, e raft.Entry) (*store.Event, error)
case "POST":
return s.st.Create(r.Path, r.Dir, r.Val, true, expr)
case "PUT":
exists, set := getBool(r.PrevExists)
exists, existsSet := getBool(r.PrevExists)
switch {
case set:
case existsSet:
if exists {
return s.st.Update(r.Path, r.Val, expr)
} else {