From 7a5042d181f7811ac36de7b2e76b84a38485ea27 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Duret?= Date: Mon, 15 Jun 2020 11:37:49 +0200 Subject: [PATCH] fix(typo): missing semicolon --- storage/quantum/dxi/ssh/mode/throughput.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/storage/quantum/dxi/ssh/mode/throughput.pm b/storage/quantum/dxi/ssh/mode/throughput.pm index 264547730..2877f9f64 100644 --- a/storage/quantum/dxi/ssh/mode/throughput.pm +++ b/storage/quantum/dxi/ssh/mode/throughput.pm @@ -112,7 +112,7 @@ sub manage_selection { # Read Throughput = 6.98 MB/s $self->{global} = {}; foreach (split(/\n/, $stdout)) { - $self->{global}->{write_rate} = $options{custom}->convert_to_bytes(raw_value => $1) if (/.*Write\sThroughput\s=\s(.*)$/i) + $self->{global}->{write_rate} = $options{custom}->convert_to_bytes(raw_value => $1) if (/.*Write\sThroughput\s=\s(.*)$/i); $self->{global}->{read_rate} = $options{custom}->convert_to_bytes(raw_value => $1) if (/.*Read\sThroughput\s=\s(.*)$/i); } }