From: Zack Cerza Date: Mon, 19 May 2014 23:33:22 +0000 (-0500) Subject: Merge pull request #258 from ceph/wip-fix-format-samba X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=74f736d3a80397fb9c0c2131eb4788ee5a559b7f;p=teuthology.git Merge pull request #258 from ceph/wip-fix-format-samba Fixed formatting and added a better variable for time out Conflicts: teuthology/task/samba.py --- diff --git a/teuthology/task/samba.py b/teuthology/task/samba.py index c2e6e6a21..a0375c520 100644 --- a/teuthology/task/samba.py +++ b/teuthology/task/samba.py @@ -175,7 +175,11 @@ def task(ctx, config): # let smbd initialize, probably a better way... import time - time.sleep(5) + seconds_to_sleep = 100 + log.info('Sleeping for %s seconds...' % seconds_to_sleep) + time.sleep(seconds_to_sleep) + log.info('Sleeping stopped...') + try: yield finally: