X-Git-Url: https://git.openstreetmap.org./dns.git/blobdiff_plain/e0022fedb09f3e9d36ebdc78c06aa6a73c9926c1..a4a34f66e2c8dd461ae8fe2e8238fcecbe2eee13:/bin/mkgeo diff --git a/bin/mkgeo b/bin/mkgeo index 4a183e8..2b7d3af 100755 --- a/bin/mkgeo +++ b/bin/mkgeo @@ -227,9 +227,17 @@ foreach my $name (sort keys %$clusters) my $cluster = $clusters->{$name}; my $used = int($cluster->{requests_used} + 0.5); my $limit = $cluster->{requests_limit}; - my $proportion = int($used / $limit * 100 + 0.5); + + if ($limit > 0) + { + my $proportion = int($used / $limit * 100 + 0.5); - print "${name}: used ${used} of ${limit} (${proportion}%)\n"; + print "${name}: used ${used} of ${limit} (${proportion}%)\n"; + } + else + { + print "${name}: used ${used} of ${limit}\n"; + } } # Create JSON collection object