infocalypse

(djk)
2009-04-06: Fixed braino that was keeping shuffling of graph CHKs from working.

Fixed braino that was keeping shuffling of graph CHKs from working.

diff --git a/infocalypse/requestingbundles.py b/infocalypse/requestingbundles.py
--- a/infocalypse/requestingbundles.py
+++ b/infocalypse/requestingbundles.py
@@ -324,7 +324,7 @@ class RequestingBundles(RetryingRequestL
             chks = list(self.top_key_tuple[0][:])
             random.shuffle(chks)
             #chks = [] # Hack to test bootstrapping w/o graph
-            for chk in self.top_key_tuple[0]:
+            for chk in chks:
                 candidate = [chk, 0, False, None, None, None, True]
                 # insert not append, because this should run AFTER
                 # initial single fetch update queued above.