fix for bug 3091852: a typo in the code

git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@7899 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
This commit is contained in:
ligc 2010-10-21 08:56:59 +00:00
parent 3a928b23b7
commit c26c7ee2c3

View File

@ -1558,7 +1558,7 @@ sub preprocess_request {
}
#convert from millisecond to second
$delay /= 1000.0;
if ($delay & ($i < scalar(@{$nodeseq}))) {
if ($delay && ($i < scalar(@{$nodeseq}))) {
my %output;
$output{data} = ["Waiting $delay seconds for node dependencies\n"];
$callback->( \%output );