diff options
author | Vedad KAJTAZ <vedad@kajtaz.net> | 2025-01-04 14:46:42 +0100 |
---|---|---|
committer | Vedad KAJTAZ <vedad@kajtaz.net> | 2025-01-04 14:46:42 +0100 |
commit | 6ca99fd02c1689d34f2b80d6dd632ee54415e391 (patch) | |
tree | add2d1d932aadf0bdc6bd772b8aef4bd3e10d3a4 /src | |
parent | b568bb863dfc4aaa4c4b6fb1a0492c5555f529a0 (diff) | |
download | garage-6ca99fd02c1689d34f2b80d6dd632ee54415e391.tar.gz garage-6ca99fd02c1689d34f2b80d6dd632ee54415e391.zip |
formatting
Diffstat (limited to 'src')
-rw-r--r-- | src/rpc/system.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/rpc/system.rs b/src/rpc/system.rs index 1a5677df..f4e4b9ea 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,9 +852,9 @@ impl NodeStatus { Some(fsid) => match mount_avail(&dir.path) { Some((_, avail, total)) => { mounts.insert(fsid, (avail, total)); - } + }, None => return None, - } + }, None => return None, } } |