Skip to content
Snippets Groups Projects
Commit ace50710 authored by Edward Hicks's avatar Edward Hicks :8ball:
Browse files

maybe don't split?

parent 8d4e03af
No related branches found
No related tags found
No related merge requests found
Pipeline #92237 passed
......@@ -369,6 +369,11 @@ except NoCredentialsError as e:
printLog("Profile '"+Config['authProfile']+"' does not have access to create SQS queues")
cleanup()
sys.exit(ret)
#except AWS.SimpleQueueService.QueueDeletedRecently as e:
# printLog(e)
# cleanup()
# time.sleep(60)
# sys.exit(ret)
except Exception as e:
printLog(e)
cleanup()
......@@ -491,7 +496,7 @@ while True:
# Populate the command to run with the values provided
pid = os.fork()
if pid == 0:
proc = subprocess.run(command.split(' '), shell=True)
proc = subprocess.run(command, shell=True)
sys.exit(proc.returncode)
printLog("Forked '"+command+"' as "+str(pid), loglevels.INFO)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment