mirror of
https://github.com/iv-org/instances-api.git
synced 2024-10-01 04:35:38 -04:00
fix instance health fetching
This commit is contained in:
parent
4d3c2025cc
commit
a34614d815
@ -42,7 +42,7 @@ spawn do
|
||||
monitors += response["psp"]["monitors"].as_a
|
||||
page += 1
|
||||
|
||||
break if response["psp"]["perPage"].as_i * page > response["psp"]["totalMonitors"].as_i
|
||||
break if response["psp"]["perPage"].as_i * (page - 1) + 1 > response["psp"]["totalMonitors"].as_i
|
||||
rescue ex
|
||||
error_message = response.try &.as?(String).try &.["errorStats"]?
|
||||
error_message ||= ex.message
|
||||
|
Loading…
Reference in New Issue
Block a user