diff --git a/net/gce.sh b/net/gce.sh index 0879b91c12..b5cb1e6a0f 100755 --- a/net/gce.sh +++ b/net/gce.sh @@ -515,7 +515,7 @@ EOF echo "Looking for additional fullnode instances in $zone ..." cloud_FindInstances "$prefix-$zone-fullnode" declare numInstances=${#instances[@]} - if [[ $numInstances -eq $numNodesPerZone || ( ! $failOnValidatorBootupFailure && $numInstances -gt 0 ) ]]; then + if [[ $numInstances -ge $numNodesPerZone || ( ! $failOnValidatorBootupFailure && $numInstances -gt 0 ) ]]; then cloud_ForEachInstance recordInstanceIp "$failOnValidatorBootupFailure" fullnodeIpList else echo "Unable to find additional fullnodes"