Title: [commits] (pje) [11409] Change suggested by Grant to fix possible race conditions during reactor
Revision
11409
Author
pje
Date
2006-08-14 12:13:13 -0700 (Mon, 14 Aug 2006)

Log Message

Change suggested by Grant to fix possible race conditions during reactor
startup, that could be causing the intermittent TestStartups failures on
the tinderboxes.

Modified Paths

Diff

Modified: trunk/chandler/parcels/osaf/startup.py (11408 => 11409)

--- trunk/chandler/parcels/osaf/startup.py	2006-08-14 18:20:15 UTC (rev 11408)
+++ trunk/chandler/parcels/osaf/startup.py	2006-08-14 19:13:13 UTC (rev 11409)
@@ -350,7 +350,7 @@
                 "can't start reactor thread except from the main thread"
             )
         limbo = [1]
-        reactor.addSystemEventTrigger('before', 'startup', limbo.pop)
+        reactor.addSystemEventTrigger('after', 'startup', limbo.pop)
         _reactor_thread = RepositoryThread(
             name="reactor", target=run_reactor, args=(False,)
         )




_______________________________________________
Commits mailing list
[email protected]
http://lists.osafoundation.org/mailman/listinfo/commits

Reply via email to