frontend: fix empty response handling
This commit is contained in:
parent
86d25bfd8f
commit
47d7168718
@ -43,9 +43,6 @@ func batchRequest(servers []string, endpoint string, command string) []string {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
text, _ := ioutil.ReadAll(response.Body)
|
text, _ := ioutil.ReadAll(response.Body)
|
||||||
if len(text) == 0 {
|
|
||||||
text = []byte("node returned empty response, please refresh to try again.")
|
|
||||||
}
|
|
||||||
ch <- channelData{i, string(text)}
|
ch <- channelData{i, string(text)}
|
||||||
}(url, i)
|
}(url, i)
|
||||||
}
|
}
|
||||||
@ -55,6 +52,9 @@ func batchRequest(servers []string, endpoint string, command string) []string {
|
|||||||
for range servers {
|
for range servers {
|
||||||
var output channelData = <-ch
|
var output channelData = <-ch
|
||||||
responseArray[output.id] = output.data
|
responseArray[output.id] = output.data
|
||||||
|
if len(responseArray[output.id]) == 0 {
|
||||||
|
responseArray[output.id] = "node returned empty response, please refresh to try again."
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return responseArray
|
return responseArray
|
||||||
|
Loading…
x
Reference in New Issue
Block a user