mirror of
https://source.quilibrium.com/quilibrium/ceremonyclient.git
synced 2024-11-10 18:25:17 +00:00
handle non-200 status codes
This commit is contained in:
parent
e745f31bbf
commit
d9d2a1bee2
17
bootstrap.go
17
bootstrap.go
@ -98,10 +98,14 @@ func JoinLobby() {
|
||||
if err != nil {
|
||||
panic(err)
|
||||
} else {
|
||||
_, err := io.ReadAll(resp.Body)
|
||||
responseData, err := io.ReadAll(resp.Body)
|
||||
if err != nil {
|
||||
panic(err)
|
||||
} else {
|
||||
if resp.StatusCode != 200 {
|
||||
fmt.Printf("Status code %d given by sequencer: \n", resp.StatusCode)
|
||||
panic(string(responseData))
|
||||
}
|
||||
return
|
||||
}
|
||||
}
|
||||
@ -125,6 +129,12 @@ func GetSequencerState() string {
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
|
||||
if resp.StatusCode != 200 {
|
||||
fmt.Printf("Status code %d given by sequencer: \n", resp.StatusCode)
|
||||
panic(string(sequencerState))
|
||||
}
|
||||
|
||||
return string(sequencerState)
|
||||
}
|
||||
|
||||
@ -144,6 +154,11 @@ func Bootstrap() {
|
||||
bcjBytes, err := io.ReadAll(bcjRes.Body)
|
||||
if err != nil {
|
||||
panic(err)
|
||||
} else {
|
||||
if bcjRes.StatusCode != 200 {
|
||||
fmt.Printf("Status code %d given by sequencer: \n", bcjRes.StatusCode)
|
||||
panic(string(bcjBytes))
|
||||
}
|
||||
}
|
||||
|
||||
if err := json.Unmarshal(bcjBytes, bcj); err != nil {
|
||||
|
Loading…
Reference in New Issue
Block a user