From ec90dc6740a17893896b48911d869dc7d04cc8fc Mon Sep 17 00:00:00 2001 From: Daira Hopwood Date: Thu, 5 Sep 2013 17:36:37 +0100 Subject: [PATCH] Thu Jun 21 21:52:21 BST 2012 david-sarah@jacaranda.org * mutable: fix shape of 'verinfo' tuple returned from MDMFSlotWriteProxy.get_verinfo(). fixes #1669 --- src/allmydata/mutable/layout.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/allmydata/mutable/layout.py b/src/allmydata/mutable/layout.py index 47b894f1..f83e9112 100644 --- a/src/allmydata/mutable/layout.py +++ b/src/allmydata/mutable/layout.py @@ -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()) -- 2.45.2