print "Error reading config file "+config_file+": " + str(e)
sys.exit(1)
-
-if __name__ == '__main__':
-
+def do_vend_server():
options = parse_args()
config_opts = VendConfigFile(options.config_file, config_options)
print
print "Connection died, trying again..."
+
+if __name__ == '__main__':
+ while True:
+ try:
+ do_vend_server()
+ except KeyboardInterrupt:
+ print "Killed by SIGINT."
+ break
+ except:
+ (exc_type, exc_value, exc_traceback) = sys.exc_info()
+ print
+ print "Uh-oh, unhandled " + str(exc_type) + " exception"
+ print "Message: ", str(exc_value)
+ print
+ print_tb(exc_traceback)
+ del exc_traceback
+ print
+ print "This message should be considered a bug in the Vend Server."
+ print "Please report this to someone who can fix it."
+ print
+ print "Trying again anyway (might not help, but hey...)"
+