Browse Source

sha_queue now holds tuple(type, sha)

John Carr 16 năm trước cách đây
mục cha
commit
49a7aedf91
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      bin/dul-daemon

+ 1 - 1
bin/dul-daemon

@@ -90,7 +90,7 @@ class GitBackend(Backend):
 
         commits_to_send = want[:]
         for sha in commits_to_send:
-            sha_queue.append(sha)
+            sha_queue.append((1,sha))
 
             c = self.repo.commit(sha)
             for p in c.parents():