]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
workunits/rgw: semicolon terminates perl statements 43165/head
authorMatt Benjamin <mbenjamin@redhat.com>
Tue, 14 Sep 2021 17:16:23 +0000 (13:16 -0400)
committerMatt Benjamin <mbenjamin@redhat.com>
Tue, 14 Sep 2021 21:13:49 +0000 (17:13 -0400)
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 <mbenjamin@redhat.com>
qa/workunits/rgw/s3_utilities.pm

index ef33e78bcc45c01cf5069f29daeebef6a9fd571a..3c3fae900e835c24677c64da38ec2be9019f23a2 100644 (file)
@@ -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);
 }