Changeset 284

Show
Ignore:
Timestamp:
08/11/06 12:47:32 (2 years ago)
Author:
mj
Message:

One more spot where we put the event on a thread. I call YAGNI

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • z3wingdbg/trunk/server/server.py

    r262 r284  
    4040         
    4141        self._server.stopService() 
    42         # Call the stop event from a threadpool thread before the debug 
    43         # thread is stopped as this could be called from the debug thread and 
    44         # could potentially take a while to process. 
    45         reactor.callInThread(event.notify, (DebugServerStoppedEvent(),)) 
     42        event.notify(DebugServerStoppedEvent()) 
    4643        # Stop the debug thread from the main reactor thread to avoid 
    4744        # join problems if the server is stopped from the debug thread itself