fix instance health fetching

This commit is contained in:
Émilien Devos 2021-03-02 14:58:28 +00:00 committed by GitHub
parent 4d3c2025cc
commit a34614d815
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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