restore behaviour of dying in case of a "fatal error", which was accidentally removed...
authorForrest Voight <forrest.voight@gmail.com>
Mon, 30 Jan 2012 19:04:29 +0000 (14:04 -0500)
committerForrest Voight <forrest.voight@gmail.com>
Mon, 30 Jan 2012 19:04:29 +0000 (14:04 -0500)
p2pool/main.py

index d7ba098..43f97cc 100644 (file)
@@ -849,6 +849,7 @@ def main(args, net, datadir_path):
         status_thread()
     except:
         log.err(None, 'Fatal error:')
+        reactor.stop()
 
 def run():
     class FixedArgumentParser(argparse.ArgumentParser):