Skip to content
Snippets Groups Projects
Commit f3b09f2b authored by Jake Taylor's avatar Jake Taylor
Browse files

fix e2e script and registration scheduling params

parent f437e8a9
No related branches found
No related tags found
2 merge requests!68Master merge,!11Release
......@@ -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
......
......@@ -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
}
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