print to find bug
This commit is contained in:
parent
a4374602e1
commit
6c9b9ea30d
@ -126,11 +126,10 @@ func (p *PeerCache) exec(url string, method tools.METHOD, body map[string]interf
|
||||
var m map[string]interface{}
|
||||
json.Unmarshal(b, &m)
|
||||
if err != nil {
|
||||
fmt.Println("response", err)
|
||||
return err
|
||||
}
|
||||
fmt.Println("response", m["error"])
|
||||
if e, ok := m["error"]; !ok && e != "" && e != "<nil>" { // Check if there is an error in the response
|
||||
fmt.Println("response", m["error"], m["error"] != "<nil>")
|
||||
if e, ok := m["error"]; ok && e != "<nil>" { // Check if there is an error in the response
|
||||
return errors.New(fmt.Sprintf("%v", m["error"]))
|
||||
}
|
||||
return nil
|
||||
|
Loading…
Reference in New Issue
Block a user