From ad8d77fe8479ddbbd752c3162fec28081e49cfc4 Mon Sep 17 00:00:00 2001 From: Jed Brown Date: Mon, 2 Jun 2014 22:20:28 +0200 Subject: referenced_objects: make comment more precise --- git-fat | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'git-fat') diff --git a/git-fat b/git-fat index bb01580..f29b1f6 100755 --- a/git-fat +++ b/git-fat @@ -303,7 +303,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() -- cgit v1.2.1