summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Murty <james@murty.co>2014-06-26 22:44:13 +0100
committerJames Murty <james@murty.co>2014-06-26 22:44:13 +0100
commitbcdbb1cc04f5f290ffb53800032d3a2fe79b97db (patch)
treee51ea33f4f7bac939bd097bf28b86263f9dba0ae
parent9b67909e57b2e7a5b1a1f169ac49d920ce900ed7 (diff)
parent074e89199f880146c0402a8c24e1136bf2bf0414 (diff)
downloadgit-fat-bcdbb1cc04f5f290ffb53800032d3a2fe79b97db.tar.gz
Merge branch 'upstream' into improve_referenced_objects_performance
-rwxr-xr-xgit-fat2
1 files changed, 1 insertions, 1 deletions
diff --git a/git-fat b/git-fat
index aa6a45d..ae11dad 100755
--- a/git-fat
+++ b/git-fat
@@ -310,7 +310,7 @@ class GitFat(object):
output.close()
# ...`cat-file --batch` provides full contents of git-fat candidates in bulk
p3 = subprocess.Popen(['git','cat-file','--batch'], stdin=subprocess.PIPE, stdout=subprocess.PIPE)
- # Stream data from p1 -> p2 -> p3 in the background
+ # Stream data: p1 | cut_thread | p2 | filter_thread | p3
cut_thread = threading.Thread(target=cut_sha1hash, args=(p1.stdout, p2.stdin))
filter_thread = threading.Thread(target=filter_gitfat_candidates, args=(p2.stdout, p3.stdin))
cut_thread.start()