From aa7538fd38e6c13d7624f5b31d07825c7ec89c44 Mon Sep 17 00:00:00 2001 From: Aram Sargsyan Date: Tue, 30 May 2023 15:13:22 +0000 Subject: [PATCH] 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. --- bin/tests/system/statschannel/fetch.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/tests/system/statschannel/fetch.pl b/bin/tests/system/statschannel/fetch.pl index 7c57ca2937..b09ed542a5 100644 --- a/bin/tests/system/statschannel/fetch.pl +++ b/bin/tests/system/statschannel/fetch.pl @@ -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) {