Skip to content

Commit

Permalink
workunits/rgw: semicolon terminates perl statements
Browse files Browse the repository at this point in the history
Fixes a lexical error in one line of code added in
90e9307, removing the dependency
on lsb_release, on 8/16/2021.

Fixes: https://tracker.ceph.com/issues/52613

Signed-off-by: Matt Benjamin <[email protected]>
  • Loading branch information
mattbenjamin committed Sep 14, 2021
1 parent a05f6bf commit 221fdb8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qa/workunits/rgw/s3_utilities.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down

0 comments on commit 221fdb8

Please sign in to comment.