Changeset 1813
- Timestamp:
- 10/30/07 12:48:41
- Files:
-
- trunk/cherrypy/restsrv/wspbus.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/cherrypy/restsrv/wspbus.py
r1810 r1813 152 152 try: 153 153 self.publish('start') 154 except (KeyboardInterrupt, SystemExit): 155 raise 154 156 except: 157 start_trace = _traceback.format_exc() 158 e_info = sys.exc_info() 155 159 try: 156 160 self.stop() … … 158 162 # Any stop errors will be logged inside publish(). 159 163 pass 160 raise 164 self.log("Exception that caused shutdown: %s" % start_trace) 165 raise e_info[0], e_info[1], e_info[2] 166 161 167 self.state = states.STARTED 162 168

