From 0bbb358c91c4c68e78e0826095990d4276215e29 Mon Sep 17 00:00:00 2001 From: Stefan Hanreich Date: Wed, 29 Mar 2023 14:34:35 +0200 Subject: [PATCH] volume export: explicitly state unit of bandwidth limit Other places like replication explicitly state whether byte or bit are used as a unit rather than only the abbreviation. Signed-off-by: Stefan Hanreich --- src/PVE/Storage.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/PVE/Storage.pm b/src/PVE/Storage.pm index cec3996..b99ed35 100755 --- a/src/PVE/Storage.pm +++ b/src/PVE/Storage.pm @@ -752,7 +752,7 @@ my $volume_export_prepare = sub { my $cstream; if (defined($ratelimit_bps)) { $cstream = [ '/usr/bin/cstream', '-t', $ratelimit_bps ]; - $logfunc->("using a bandwidth limit of $ratelimit_bps bps for transferring '$volid'") if $logfunc; + $logfunc->("using a bandwidth limit of $ratelimit_bps bytes per second for transferring '$volid'") if $logfunc; } volume_snapshot($cfg, $volid, $snapshot) if $migration_snapshot;