mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
better error message
This commit is contained in:
parent
b23e51f205
commit
6f606bb350
|
@ -153,11 +153,13 @@ func volumeGrowHandler(w http.ResponseWriter, r *http.Request) {
|
||||||
} else {
|
} else {
|
||||||
count, err = vg.GrowByCountAndType(count, rt, topo)
|
count, err = vg.GrowByCountAndType(count, rt, topo)
|
||||||
}
|
}
|
||||||
|
}else{
|
||||||
|
err = errors.New("parameter count is not found")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if err != nil {
|
if err != nil {
|
||||||
w.WriteHeader(http.StatusNotAcceptable)
|
w.WriteHeader(http.StatusNotAcceptable)
|
||||||
writeJson(w, r, map[string]string{"error": err.Error()})
|
writeJson(w, r, map[string]string{"error": "parameter replication "+err.Error()})
|
||||||
} else {
|
} else {
|
||||||
w.WriteHeader(http.StatusNotAcceptable)
|
w.WriteHeader(http.StatusNotAcceptable)
|
||||||
writeJson(w, r, map[string]interface{}{"count": count})
|
writeJson(w, r, map[string]interface{}{"count": count})
|
||||||
|
|
Loading…
Reference in a new issue