projects
/
tahoe-lafs
/
tahoe-lafs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7443121
)
node.py: when calling os.abort(), announce it to stdout as well as the log
author
Brian Warner
<warner@lothar.com>
Wed, 16 Jan 2008 10:01:32 +0000
(
03:01
-0700)
committer
Brian Warner
<warner@lothar.com>
Wed, 16 Jan 2008 10:01:32 +0000
(
03:01
-0700)
src/allmydata/node.py
patch
|
blob
|
history
diff --git
a/src/allmydata/node.py
b/src/allmydata/node.py
index 244a1e1d768c951b39daf8946b23854933e96779..56b63ccebef54c708fd410fcd525f40b8ccc682c 100644
(file)
--- a/
src/allmydata/node.py
+++ b/
src/allmydata/node.py
@@
-170,8
+170,11
@@
class Node(service.MultiService):
def _die(failure):
self.log('_startService() failed')
log.err(failure)
+ print "Node._startService failed, aborting"
+ print failure
#reactor.stop() # for unknown reasons, reactor.stop() isn't working. [ ] TODO
self.log('calling os.abort()')
+ print "calling os.abort()"
os.abort()
d.addErrback(_die)