Update uptime logic to handle updown.io response

This commit is contained in:
syeopite 2024-05-22 13:28:15 -07:00
parent aa96cf3453
commit 9980c0e00f
No known key found for this signature in database
GPG Key ID: A73C186DA3955A1A
1 changed files with 2 additions and 2 deletions

View File

@ -89,8 +89,8 @@ class Invidious::Jobs::InstanceListRefreshJob < Invidious::Jobs::BaseJob
# Checks if the uptime of the target instance is greater than 90% over a 30 day period
private def bad_uptime?(target_instance_health_monitor) : Bool
return true if !target_instance_health_monitor["statusClass"] == "success"
return true if target_instance_health_monitor["30dRatio"]["ratio"].as_s.to_f < 90
return true if !target_instance_health_monitor["down"].as_bool == false
return true if target_instance_health_monitor["uptime"].as_f < 90
return false
end