Commit 1e12d20a by Feanil Patel

Add switch on mongo_uri instead of mongo_host.

parent dfbeca9a
...@@ -600,7 +600,7 @@ if __name__ == '__main__': ...@@ -600,7 +600,7 @@ if __name__ == '__main__':
print 'You must be able to connect to sqs and ec2 to use this script' print 'You must be able to connect to sqs and ec2 to use this script'
sys.exit(1) sys.exit(1)
if args.mongo_host: if args.mongo_uri:
mongo_con = MongoConnection() mongo_con = MongoConnection()
try: try:
...@@ -626,7 +626,7 @@ if __name__ == '__main__': ...@@ -626,7 +626,7 @@ if __name__ == '__main__':
print "{:<30} {:0>2.0f}:{:0>5.2f}".format( print "{:<30} {:0>2.0f}:{:0>5.2f}".format(
run[0], run[1] / 60, run[1] % 60) run[0], run[1] / 60, run[1] % 60)
print "AMI: {}".format(ami) print "AMI: {}".format(ami)
if args.mongo_host: if args.mongo_uri:
mongo_con.update_ami(ami) mongo_con.update_ami(ami)
mongo_con.update_deployment(ami) mongo_con.update_deployment(ami)
finally: finally:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment