From f3b09f2bba7d80be1663825ecf7bab90f5bb4b26 Mon Sep 17 00:00:00 2001
From: Jake Taylor <jake@elixxir.io>
Date: Thu, 30 Dec 2021 11:48:14 -0600
Subject: [PATCH] fix e2e script and registration scheduling params

---
 basice2e/e2eReport.py      | 4 ++--
 basice2e/registration.json | 8 +++-----
 2 files changed, 5 insertions(+), 7 deletions(-)

diff --git a/basice2e/e2eReport.py b/basice2e/e2eReport.py
index 1c6bf42..94e9003 100755
--- a/basice2e/e2eReport.py
+++ b/basice2e/e2eReport.py
@@ -75,9 +75,9 @@ def main():
                         if sent_round not in rounds_sent:
                             rounds_sent[sent_round] = False
 
-                    elif "Received message of type" in line or "Received AuthRequest from" in line or "Received AuthConfirm from" in line:
+                    elif "Received message of" in line or "Received AuthRequest from" in line or "Received AuthConfirm from" in line:
                         # Capture message receiving
-                        received_message = re.findall(' msgDigest: (.{20})', line)[0]
+                        received_message = re.findall('msgDigest: (.{20})', line)[0]
                         log.debug("Located received message: {}".format(received_message))
 
                         # Capture message timestamp
diff --git a/basice2e/registration.json b/basice2e/registration.json
index 1205075..0c4a121 100644
--- a/basice2e/registration.json
+++ b/basice2e/registration.json
@@ -4,11 +4,9 @@
     "RealtimeTimeout": 15000,
     "DebugTrackRounds": true,
     "BatchSize": 32,
-    "MinimumDelay": 3000,
-    "RealtimeDelay": 5000,
-    "SemiOptimalOrdering": true,
-    "Secure": true,
+    "MinimumDelay": 1000,
+    "RealtimeDelay": 2000,
     "Threshold":     0.3,
-    "NodeCleanUpInterval": 3,
+    "NodeCleanUpInterval": 180000,
     "ResourceQueueTimeout": 300000
 }
-- 
GitLab