]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
Thu Jun 21 21:52:21 BST 2012 david-sarah@jacaranda.org
authorDaira Hopwood <daira@jacaranda.org>
Thu, 5 Sep 2013 16:36:37 +0000 (17:36 +0100)
committerDaira Hopwood <daira@jacaranda.org>
Thu, 5 Sep 2013 16:36:37 +0000 (17:36 +0100)
  * mutable: fix shape of 'verinfo' tuple returned from MDMFSlotWriteProxy.get_verinfo(). fixes #1669

src/allmydata/mutable/layout.py

index 47b894f17f7486e322f531ac41440396475b8fc9..f83e9112440126dff35e51bb457fbe6ffed22c18 100644 (file)
@@ -1099,10 +1099,11 @@ class MDMFSlotWriteProxy:
     def get_verinfo(self):
         return (self._seqnum,
                 self._root_hash,
-                self._required_shares,
-                self._total_shares,
+                None,
                 self._segment_size,
                 self._data_length,
+                self._required_shares,
+                self._total_shares,
                 self.get_signable(),
                 self._get_offsets_tuple())