Explorar o código

Fix compile bug in peer_server_handlers.go

resp.Success is a func() bool, not a bool.  Call it.
augustoroman %!s(int64=12) %!d(string=hai) anos
pai
achega
e1ed380f04
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      server/peer_server_handlers.go

+ 1 - 1
server/peer_server_handlers.go

@@ -71,7 +71,7 @@ func (ps *PeerServer) AppendEntriesHttpHandler(w http.ResponseWriter, req *http.
 		return
 	}
 
-	if !resp.Success {
+	if !resp.Success() {
 		log.Debugf("[Append Entry] Step back")
 	}