Skip to content
This repository has been archived by the owner on Aug 20, 2019. It is now read-only.

Commit

Permalink
don't wait quite as long for ZK
Browse files Browse the repository at this point in the history
  • Loading branch information
hannosch committed Apr 3, 2012
1 parent 569a9ea commit 8d39751
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qdo/tests/base.py
Expand Up @@ -48,7 +48,7 @@ def _clean_zk(cls, count=0):
for child in conn.get_children(u'/'): for child in conn.get_children(u'/'):
conn.delete_recursive(u'/' + child) conn.delete_recursive(u'/' + child)
if len(conn.get_children(u'/')) > 0: if len(conn.get_children(u'/')) > 0:
time.sleep(1.0) time.sleep(0.5)
cls._clean_zk(count + 1) cls._clean_zk(count + 1)




Expand Down

0 comments on commit 8d39751

Please sign in to comment.