mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-21 13:57:51 +00:00
get rid of potential infinite loops
This commit is contained in:
parent
e88d0c4b48
commit
20f907f5d3
@ -168,7 +168,9 @@ def test_deep_stats(alice):
|
||||
assert resp.status_code >= 200 and resp.status_code < 300
|
||||
|
||||
# confirm we get information from the op .. after its done
|
||||
while True:
|
||||
tries = 10
|
||||
while tries > 0:
|
||||
tries -= 1
|
||||
resp = requests.get(
|
||||
util.node_url(alice.node_dir, u"operations/something_random"),
|
||||
)
|
||||
@ -372,7 +374,9 @@ def test_directory_deep_check(alice):
|
||||
deepcheck_uri = resp.url
|
||||
|
||||
data = json.loads(resp.content)
|
||||
while not data['finished']:
|
||||
tries = 10
|
||||
while not data['finished'] and tries > 0:
|
||||
tries -= 1
|
||||
time.sleep(0.5)
|
||||
print("deep-check not finished, reloading")
|
||||
resp = requests.get(deepcheck_uri, params={u"output": "JSON"})
|
||||
|
Loading…
Reference in New Issue
Block a user