|
|
@ -120,10 +120,11 @@ def extract_UUID_from_client(client):
|
|
|
|
uuid = m.group(1)
|
|
|
|
uuid = m.group(1)
|
|
|
|
return uuid.strip()
|
|
|
|
return uuid.strip()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def wait_for_all_checks(client):
|
|
|
|
def wait_for_all_checks(client):
|
|
|
|
# Loop waiting until done..
|
|
|
|
# Loop waiting until done..
|
|
|
|
attempt=0
|
|
|
|
attempt = 0
|
|
|
|
time.sleep(0.1)
|
|
|
|
time.sleep(1)
|
|
|
|
while attempt < 60:
|
|
|
|
while attempt < 60:
|
|
|
|
res = client.get(url_for("index"))
|
|
|
|
res = client.get(url_for("index"))
|
|
|
|
if not b'Checking now' in res.data:
|
|
|
|
if not b'Checking now' in res.data:
|
|
|
|