From 221fdb858be083a981697cdb59c19f0659be3f1d Mon Sep 17 00:00:00 2001 From: Matt Benjamin Date: Tue, 14 Sep 2021 13:16:23 -0400 Subject: [PATCH] workunits/rgw: semicolon terminates perl statements Fixes a lexical error in one line of code added in 90e9307ab0a52da260bc1ebb50329cd8ff942eb9, removing the dependency on lsb_release, on 8/16/2021. Fixes: https://tracker.ceph.com/issues/52613 Signed-off-by: Matt Benjamin --- qa/workunits/rgw/s3_utilities.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qa/workunits/rgw/s3_utilities.pm b/qa/workunits/rgw/s3_utilities.pm index ef33e78bcc4..3c3fae900e8 100644 --- a/qa/workunits/rgw/s3_utilities.pm +++ b/qa/workunits/rgw/s3_utilities.pm @@ -154,7 +154,7 @@ sub ceph_os_info my $ceph_v = get_command_output ( "ceph -v" ); my @ceph_arr = split(" ",$ceph_v); $ceph_v = "Ceph Version: $ceph_arr[2]"; - my $os_distro = os_pretty_name() + my $os_distro = os_pretty_name(); $os_distro = "Linux Flavor:$os_distro"; return ($ceph_v, $os_distro); } -- 2.39.5