Skip to content
Snippets Groups Projects
Commit 2b2c787f authored by Paul McCarthy's avatar Paul McCarthy
Browse files

props.CallQueue has changed - associated changes to trace monkey patch.

parent 4a314a2b
No related branches found
No related tags found
No related merge requests found
......@@ -105,11 +105,11 @@ if log.getEffectiveLevel() == logging.DEBUG:
# Patch the CallQueue instance with
# our push/pop implementations
theQ._causes = Queue.Queue()
theQ._realPush = theQ._push
theQ._realPop = theQ._pop
theQ._push = tracePush
theQ._pop = tracePop
theQ._causes = Queue.Queue()
theQ._realPush = theQ._CallQueue__push
theQ._realPop = theQ._CallQueue__pop
theQ._CallQueue__push = tracePush
theQ._CallQueue__pop = tracePop
def trace(desc):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment