We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c93f36f + 78a0b1a commit 9b39b74Copy full SHA for 9b39b74
1 file changed
src/ceph_version.rs
@@ -39,6 +39,7 @@ pub enum CephVersion {
39
Mimic,
40
Nautilus,
41
Octopus,
42
+ Pacific,
43
}
44
45
impl FromStr for CephVersion {
@@ -60,6 +61,7 @@ impl FromStr for CephVersion {
60
61
version_parts.next(),
62
) {
63
match major {
64
+ "16" => return Ok(Pacific),
65
"15" => return Ok(Octopus),
66
"14" => return Ok(Nautilus),
67
"13" => return Ok(Mimic),
0 commit comments