Commit 1bb5c7e8 by Feanil Patel

Only notify when hipchat is setup.

parent 4914f794
...@@ -137,7 +137,8 @@ if __name__ == '__main__': ...@@ -137,7 +137,8 @@ if __name__ == '__main__':
if environment is None or deployment is None or play is None: if environment is None or deployment is None or play is None:
msg = "Unable to retrieve environment, deployment, or play tag." msg = "Unable to retrieve environment, deployment, or play tag."
print(msg) print(msg)
notify("{} : {}".format(prefix, msg)) if notify:
notify("{} : {}".format(prefix, msg))
exit(0) exit(0)
#get the hostname of the sandbox #get the hostname of the sandbox
...@@ -157,7 +158,8 @@ if __name__ == '__main__': ...@@ -157,7 +158,8 @@ if __name__ == '__main__':
except: except:
msg = "Failed to tag volumes associated with {}".format(instance_id) msg = "Failed to tag volumes associated with {}".format(instance_id)
print(msg) print(msg)
notify(msg) if notify:
notify(msg)
try: try:
for service in services_for_instance(instance_id): for service in services_for_instance(instance_id):
......
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