diff options
-rw-r--r-- | sfc/lib/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sfc/lib/utils.py b/sfc/lib/utils.py index a3525079..d3b2c063 100644 --- a/sfc/lib/utils.py +++ b/sfc/lib/utils.py @@ -306,7 +306,7 @@ def get_ssh_clients(nodes): def check_ssh(ips, retries=100): """Check SSH connectivity to VNFs""" - check = [False, False] + check = [False for ip in ips] logger.info("Checking SSH connectivity to the SFs with ips %s" % str(ips)) while retries and not all(check): for index, ip in enumerate(ips): |