]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
Merge pull request #258 from ceph/wip-fix-format-samba
authorZack Cerza <zack@cerza.org>
Mon, 19 May 2014 23:33:22 +0000 (18:33 -0500)
committerSandon Van Ness <sandon@inktank.com>
Thu, 22 May 2014 17:20:14 +0000 (10:20 -0700)
Fixed formatting and added a better variable for time out
Conflicts:

teuthology/task/samba.py

teuthology/task/samba.py

index c2e6e6a21747b62de4bfa936b399b27f1dae9955..a0375c5208efea58cd59667589e4d36ae5c11f36 100644 (file)
@@ -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: