mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2025-01-18 06:30:07 +08:00
FIXED: When RaftServer cannot find a leader, Return a more readable error.
Before: curl -F "file=1234" "http://127.0.0.1:9333/submit" {"error":"Post http:///dir/assign: http: no Host in request URL"} After: curl -F "file=1234" "http://127.0.0.1:9333/submit" {"error":"Raft Server not initialized!"}
This commit is contained in:
parent
6e876e0582
commit
6f96862662
@ -133,7 +133,12 @@ func (ms *MasterServer) submitFromMasterServerHandler(w http.ResponseWriter, r *
|
|||||||
if ms.Topo.IsLeader() {
|
if ms.Topo.IsLeader() {
|
||||||
submitForClientHandler(w, r, "localhost:"+strconv.Itoa(ms.port))
|
submitForClientHandler(w, r, "localhost:"+strconv.Itoa(ms.port))
|
||||||
} else {
|
} else {
|
||||||
submitForClientHandler(w, r, ms.Topo.RaftServer.Leader())
|
masterUrl, err := ms.Topo.Leader()
|
||||||
|
if err != nil {
|
||||||
|
writeJsonError(w, r, http.StatusInternalServerError, err)
|
||||||
|
} else {
|
||||||
|
submitForClientHandler(w, r, masterUrl)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user