summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--guprecords.raku2
1 files changed, 1 insertions, 1 deletions
diff --git a/guprecords.raku b/guprecords.raku
index 260e257..ec0de67 100644
--- a/guprecords.raku
+++ b/guprecords.raku
@@ -67,7 +67,7 @@ class Aggregate {
class HostAggregate is Aggregate {
method lifespan returns UInt { $.last-seen - $.first-boot }
method downtime returns UInt { self.lifespan - $.uptime }
- method meta-score returns UInt { UInt(self.downtime / 1000000) + callsame }
+ method meta-score returns UInt { UInt(self.downtime / 2000000) + callsame }
}
class Aggregator {