Kaynağa Gözat

object_store: Don't send a pack with duplicates of the same object.

Change-Id: I60cff6453dcd40fefcda8c7048befd545451d712
Dave Borowitz 13 yıl önce
ebeveyn
işleme
1a8caadab9
2 değiştirilmiş dosya ile 8 ekleme ve 3 silme
  1. 2 0
      NEWS
  2. 6 3
      dulwich/object_store.py

+ 2 - 0
NEWS

@@ -45,6 +45,8 @@
 
   * Teach ReceivePackHandler how to read empty packs. (Dave Borowitz)
 
+  * Don't send a pack with duplicates of the same object. (Dave Borowitz)
+
  API CHANGES
 
   * write_pack no longer takes the num_objects argument and requires an object

+ 6 - 3
dulwich/object_store.py

@@ -731,9 +731,12 @@ class MissingObjectFinder(object):
         self.add_todo([(tag.object[1], None, False)])
 
     def next(self):
-        if not self.objects_to_send:
-            return None
-        (sha, name, leaf) = self.objects_to_send.pop()
+        while True:
+            if not self.objects_to_send:
+                return None
+            (sha, name, leaf) = self.objects_to_send.pop()
+            if sha not in self.sha_done:
+                break
         if not leaf:
             o = self.object_store[sha]
             if isinstance(o, Commit):