summaryrefslogtreecommitdiff
path: root/lib/git/async/task.py
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2010-06-08 19:25:33 +0200
committerSebastian Thiel <byronimo@gmail.com>2010-06-08 19:25:33 +0200
commit772b95631916223e472989b43f3a31f61e237f31 (patch)
treecac3b488a05502b15532b07bb3848e0fdb2df339 /lib/git/async/task.py
parente5c0002d069382db1768349bf0c5ff40aafbf140 (diff)
downloadgitpython-772b95631916223e472989b43f3a31f61e237f31.tar.gz
workerthread: adjusted to use a blocking queue, it will receive termination events only with its queue, with boosts performance into brigt green levels
Diffstat (limited to 'lib/git/async/task.py')
-rw-r--r--lib/git/async/task.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/git/async/task.py b/lib/git/async/task.py
index 5edd40bb..f9536a45 100644
--- a/lib/git/async/task.py
+++ b/lib/git/async/task.py
@@ -89,7 +89,7 @@ class OutputChannelTask(Node):
def process(self, count=0):
"""Process count items and send the result individually to the output channel"""
items = self._read(count)
- print "task read", len(items)
+ # print "task read", len(items)
try:
# increase the ref-count - we use this to determine whether anyone else
# is currently handling our output channel. As this method runs asynchronously,