rename variable, drop exception

This commit is contained in:
Viktor Szakats 2025-07-12 09:43:03 +02:00
parent 3dc6cf96c4
commit cb056a7ee1
No known key found for this signature in database
GPG key ID: B5ABD165E2AEF201
3 changed files with 3 additions and 4 deletions

View file

@ -3127,8 +3127,8 @@ foreach my $runnerid (values %runnerids) {
# Wait for servers to stop
my $unexpected;
foreach my $runnerid (values %runnerids) {
my ($rid, $unexpect, $logs) = runnerar($runnerid);
$unexpected ||= $unexpect;
my ($rid, $unexpected_per_runner, $logs) = runnerar($runnerid);
$unexpected ||= $unexpected_per_runner;
logmsg $logs;
}