From: Matt Benjamin Date: Tue, 14 Sep 2021 17:16:23 +0000 (-0400) Subject: workunits/rgw: semicolon terminates perl statements X-Git-Tag: v17.1.0~861^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F43165%2Fhead;p=ceph.git 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 --- diff --git a/qa/workunits/rgw/s3_utilities.pm b/qa/workunits/rgw/s3_utilities.pm index ef33e78bcc45..3c3fae900e83 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); }