Remove trailing x for compressratio with ZoL < 0.8

This commit is contained in:
Daniel Berteaud 2019-09-20 12:54:01 +02:00
parent e1090b125b
commit 2a0c6b2ad9
1 changed files with 4 additions and 0 deletions

View File

@ -63,6 +63,10 @@ if ($pool){
chomp;
my @parse = split /\t+/, $_;
$json->{$parse[1]} = (defined $map->{$parse[2]}) ? $map->{$parse[2]} : $parse[2];
if ($parse[1] =~ m/compressratio$/){
# Remove trailing x for compressratio and refcompressratio as before 0.8.0 it can be like 1.23x
$json->{$parse[1]} =~ s/x$//;
}
}
} elsif ($sanoidsnap){
print qx($sanoid --monitor-snapshot);