Skip to content
Snippets Groups Projects
Commit e2e8484c authored by Nikolay Stanchev's avatar Nikolay Stanchev
Browse files

Slight adjustment to the aggregator

parent d9a68ee3
No related branches found
No related tags found
No related merge requests found
......@@ -138,7 +138,7 @@ class Aggregator(Thread):
old_timestamp = current_time
# wait until {REPORT_PERIOD} seconds have passed
while current_time != old_timestamp + self.REPORT_PERIOD:
while current_time < old_timestamp + self.REPORT_PERIOD:
sleep(1)
current_time = int(time())
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment