frontend: fix empty response handling

This commit is contained in:
Lan Tian 2020-06-29 13:50:56 +08:00
parent 86d25bfd8f
commit 47d7168718
No known key found for this signature in database
GPG Key ID: 27F31700E751EC22

View File

@ -43,9 +43,6 @@ func batchRequest(servers []string, endpoint string, command string) []string {
return
}
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)}
}(url, i)
}
@ -55,6 +52,9 @@ func batchRequest(servers []string, endpoint string, command string) []string {
for range servers {
var output channelData = <-ch
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