Increasing wait between stop starts

This commit is contained in:
Bilal Baqar 2015-11-18 01:12:39 -08:00
parent 7bfb10686e
commit 9bf84d290f
1 changed files with 2 additions and 2 deletions

View File

@ -140,10 +140,10 @@ def restart_pg():
Stops and Starts PLUMgrid service after flushing iptables.
'''
service_stop('plumgrid')
time.sleep(2)
time.sleep(30)
_exec_cmd(cmd=['iptables', '-F'])
service_start('plumgrid')
time.sleep(5)
time.sleep(30)
def stop_pg():