fix
This commit is contained in:
parent
7238164677
commit
02b7fbbcd7
1 changed files with 4 additions and 1 deletions
|
@ -90,7 +90,10 @@ pub fn cephfs_snap_create(dir: &str) -> (String, String) {
|
|||
}
|
||||
}
|
||||
|
||||
(snap_dir.to_str().unwrap().to_string(), snap_name)
|
||||
(
|
||||
format!("{}/", snap_dir.to_str().unwrap().to_string()),
|
||||
snap_name,
|
||||
)
|
||||
}
|
||||
|
||||
pub fn cephfs_snap_remove(dir: &str, snap: &str) {
|
||||
|
|
Loading…
Reference in a new issue