Move send_service_request_single inside the while loop so that it actually would work as a retry mechanism

git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@12180 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
This commit is contained in:
jbjohnso 2012-04-10 12:39:37 +00:00
parent f9d6ddd02c
commit 17593ac412

View File

@ -104,9 +104,9 @@ sub dodiscover {
}
}
}
}
foreach my $srvtype (@srvtypes) {
send_service_request_single(%args,ifacemap=>$interfaces,SrvType=>$srvtype);
foreach my $srvtype (@srvtypes) {
send_service_request_single(%args,ifacemap=>$interfaces,SrvType=>$srvtype);
}
}
return \%rethash;
}