diff --git a/src/forge/engine.py b/src/forge/engine.py index 5d96fb8..9a8bc69 100755 --- a/src/forge/engine.py +++ b/src/forge/engine.py @@ -1,6 +1,8 @@ """Run a command on remote EC2, rsync user content, and execute it.""" -import boto3 import logging +import time + +import boto3 from . import DEFAULT_ARG_VALS, REQUIRED_ARGS from .exceptions import ExitHandlerException @@ -54,6 +56,7 @@ def engine(config): try: create(config) + time.sleep(60) status = rsync(config) status = run(config) except ExitHandlerException: