소스 검색

sha_queue now holds tuple(type, sha)

John Carr 16 년 전
부모
커밋
49a7aedf91
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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():