From e2e8484ca04c791963214a1dbdde1cdc33f78f7c Mon Sep 17 00:00:00 2001
From: Nikolay Stanchev <ns17@it-innovation.soton.ac.uk>
Date: Wed, 23 May 2018 09:28:30 +0100
Subject: [PATCH] Slight adjustment to the aggregator

---
 clmctest/monitoring/E2EAggregator.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/clmctest/monitoring/E2EAggregator.py b/clmctest/monitoring/E2EAggregator.py
index 8bef3d9..c601d68 100644
--- a/clmctest/monitoring/E2EAggregator.py
+++ b/clmctest/monitoring/E2EAggregator.py
@@ -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())
 
-- 
GitLab