Fix a bug in an utility script for the statschannel system test

Because of a typo, the fetch.pl script tries to extract the server
address from the input parameter 'a' instead of 's'. Fix the typo.

(cherry picked from commit aa7538fd38)
This commit is contained in:
Aram Sargsyan 2023-05-30 15:13:22 +00:00
parent 7fc0400617
commit 3a807e554f

View file

@ -28,7 +28,7 @@ my %options={};
getopts("s:p:", \%options);
my $addr = "10.53.0.2";
$addr = $options{a} if defined $options{a};
$addr = $options{s} if defined $options{s};
my $path = 'xml/v3';
if (@ARGV >= 1) {