Explorar el Código

etcdserver: set -> existsSet

Blake Mizerany hace 11 años
padre
commit
2d3cef2496
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      etcdserver2/server.go

+ 2 - 2
etcdserver2/server.go

@@ -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 {