summaryrefslogtreecommitdiff
path: root/lib/git/async/channel.py
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2010-06-09 10:34:12 +0200
committerSebastian Thiel <byronimo@gmail.com>2010-06-09 10:34:12 +0200
commit15941ca090a2c3c987324fc911bbc6f89e941c47 (patch)
tree3c508eb2e8be484e8685cddaa1de72826fbf9302 /lib/git/async/channel.py
parentf78d4a28f307a9d7943a06be9f919304c25ac2d9 (diff)
downloadgitpython-15941ca090a2c3c987324fc911bbc6f89e941c47.tar.gz
queue: fixed critical bug in the notify method, as it was not at all thread-safe, causing locks to be released multiple times. Now it runs very fast, and very stable apparently.
Now its about putting previous features back in, and studying their results, before more complex task graphs can be examined
Diffstat (limited to 'lib/git/async/channel.py')
-rw-r--r--lib/git/async/channel.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/git/async/channel.py b/lib/git/async/channel.py
index c05f7383..58c35f96 100644
--- a/lib/git/async/channel.py
+++ b/lib/git/async/channel.py
@@ -75,7 +75,6 @@ class WChannel(Channel):
an error"""
# yes, close it a little too early, better than having anyone put
# additional items
- # print "closing channel", self
self._closed = True
self._queue.set_writable(False)