mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
Add better error message.
This commit is contained in:
parent
b75ca9890d
commit
23012deccf
|
@ -39,7 +39,7 @@ func Assign(server string, count int, replication string, collection string, ttl
|
||||||
var ret AssignResult
|
var ret AssignResult
|
||||||
err = json.Unmarshal(jsonBlob, &ret)
|
err = json.Unmarshal(jsonBlob, &ret)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, fmt.Errorf("JSON unmarshal error:%v, json:%s", err, string(jsonBlob))
|
return nil, fmt.Errorf("/dir/assign result JSON unmarshal error:%v, json:%s", err, string(jsonBlob))
|
||||||
}
|
}
|
||||||
if ret.Count <= 0 {
|
if ret.Count <= 0 {
|
||||||
return nil, errors.New(ret.Error)
|
return nil, errors.New(ret.Error)
|
||||||
|
|
Loading…
Reference in a new issue