WIP: v1.99-internal version for Deuxfleurs use only #964

Draft
lx wants to merge 165 commits from v1.99-internal into hotfix/1.0.0-rc1-red-ftr-wquorum
Showing only changes of commit 6ca99fd02c - Show all commits

View file

@ -843,7 +843,7 @@ impl NodeStatus {
match mount_avail(&dir.path) { match mount_avail(&dir.path) {
Some((fsid, avail, total)) => { Some((fsid, avail, total)) => {
mounts.insert(fsid, (avail, total)); mounts.insert(fsid, (avail, total));
} },
None => return None, None => return None,
} }
@ -852,9 +852,9 @@ impl NodeStatus {
Some(fsid) => match mount_avail(&dir.path) { Some(fsid) => match mount_avail(&dir.path) {
Some((_, avail, total)) => { Some((_, avail, total)) => {
mounts.insert(fsid, (avail, total)); mounts.insert(fsid, (avail, total));
} },
None => return None, None => return None,
} },
None => return None, None => return None,
} }
} }