sdc-backend-init does not restart on healthcheck failure
[sdc.git] / catalog-be / sdc-backend-init / chef-repo / cookbooks / sdc-catalog-be-setup / templates / default / check_Backend_Health.py.erb
index eb77f93..bcacf88 100644 (file)
@@ -3,6 +3,7 @@ import subprocess
 #from time import sleep
 import time
 from datetime import datetime
+import sys
 
 beStat=0
 BE_IP="<%= @be_ip %>"
@@ -48,4 +49,4 @@ for i in range(1,10):
 
 if beStat == 0:
     print '[ERROR]: ' + time.strftime('%Y/%m/%d %H:%M:%S') + bcolors.FAIL + 'Backend is DOWN :-(' + bcolors.ENDC
-    exit()
\ No newline at end of file
+    sys.exit(1)
\ No newline at end of file