projects
/
tahoe-lafs
/
tahoe-lafs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
efde0fc
)
Thu Jun 21 21:52:21 BST 2012 david-sarah@jacaranda.org
author
Daira Hopwood
<daira@jacaranda.org>
Thu, 5 Sep 2013 16:36:37 +0000
(17:36 +0100)
committer
Daira 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
patch
|
blob
|
history
diff --git
a/src/allmydata/mutable/layout.py
b/src/allmydata/mutable/layout.py
index 47b894f17f7486e322f531ac41440396475b8fc9..f83e9112440126dff35e51bb457fbe6ffed22c18 100644
(file)
--- 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())