15524 round iprange utilization

This commit is contained in:
Arthur 2024-04-16 11:21:43 -07:00
parent 3c3943c809
commit a970f655ac
1 changed files with 1 additions and 1 deletions

View File

@ -692,7 +692,7 @@ class IPRange(PrimaryModel):
ip.address.ip for ip in self.get_child_ips()
]).size
return int(float(child_count) / self.size * 100)
return min(float(child_count) / self.size * 100, 100)
class IPAddress(PrimaryModel):