aboutsummaryrefslogtreecommitdiff
path: root/src/rpc
diff options
context:
space:
mode:
authorVedad KAJTAZ <vedad@kajtaz.net>2025-01-04 16:52:23 +0100
committerVedad KAJTAZ <vedad@kajtaz.net>2025-01-04 16:52:23 +0100
commit6689800986580713b4d04b1e77c1ab0cadae8c18 (patch)
tree848694386045ad04deb711162acdc13110469215 /src/rpc
parent6ca99fd02c1689d34f2b80d6dd632ee54415e391 (diff)
downloadgarage-6689800986580713b4d04b1e77c1ab0cadae8c18.tar.gz
garage-6689800986580713b4d04b1e77c1ab0cadae8c18.zip
Formatting with
Diffstat (limited to 'src/rpc')
-rw-r--r--src/rpc/system.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rpc/system.rs b/src/rpc/system.rs
index f4e4b9ea..753d8c8d 100644
--- a/src/rpc/system.rs
+++ b/src/rpc/system.rs
@@ -843,7 +843,7 @@ impl NodeStatus {
match mount_avail(&dir.path) {
Some((fsid, avail, total)) => {
mounts.insert(fsid, (avail, total));
- },
+ }
None => return None,
}
@@ -852,7 +852,7 @@ impl NodeStatus {
Some(fsid) => match mount_avail(&dir.path) {
Some((_, avail, total)) => {
mounts.insert(fsid, (avail, total));
- },
+ }
None => return None,
},
None => return None,