mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2025-01-02 03:06:41 +00:00
Change code that gives a base32 SI or an empty string to be more straightforward. (#948)
This commit is contained in:
parent
a2ed17f2a0
commit
40edf8f419
@ -830,9 +830,13 @@ class ManifestWalker(DeepStats):
|
||||
class DeepChecker:
|
||||
def __init__(self, root, verify, repair, add_lease):
|
||||
root_si = root.get_storage_index()
|
||||
if root_si:
|
||||
root_si_base32 = base32.b2a(root_si)
|
||||
else:
|
||||
root_si_base32 = ""
|
||||
self._lp = log.msg(format="deep-check starting (%(si)s),"
|
||||
" verify=%(verify)s, repair=%(repair)s",
|
||||
si=base32.b2a(root_si or ""), verify=verify, repair=repair)
|
||||
si=root_si_base32, verify=verify, repair=repair)
|
||||
self._verify = verify
|
||||
self._repair = repair
|
||||
self._add_lease = add_lease
|
||||
|
@ -923,9 +923,13 @@ class ManifestResults(rend.Page, ReloadMixin):
|
||||
m = self.monitor
|
||||
s = m.get_status()
|
||||
|
||||
if m.origin_si:
|
||||
origin_base32 = base32.b2a(m.origin_si)
|
||||
else:
|
||||
origin_base32 = ""
|
||||
status = { "stats": s["stats"],
|
||||
"finished": m.is_finished(),
|
||||
"origin": base32.b2a(m.origin_si or ""),
|
||||
"origin": origin_base32,
|
||||
}
|
||||
if m.is_finished():
|
||||
# don't return manifest/verifycaps/SIs unless the operation is
|
||||
|
Loading…
Reference in New Issue
Block a user