diff options
author | Linda Wang <wangwulin@huawei.com> | 2017-09-26 03:31:51 +0000 |
---|---|---|
committer | Linda Wang <wangwulin@huawei.com> | 2017-09-26 03:38:35 +0000 |
commit | 112e652af2b2f61192d3f1bd903522a14be06b94 (patch) | |
tree | ac0f7ab78f3ecfdce3df5a83d8bb5806182fb531 /functest/ci/check_deployment.py | |
parent | 8c3791f730effbf09fc95ef2bc66ff0d0a37e87b (diff) |
Fix timeout for socket connection
Change-Id: I0688761ba7224f40f79310295efadd9b40bfeefb
Signed-off-by: Linda Wang <wangwulin@huawei.com>
Diffstat (limited to 'functest/ci/check_deployment.py')
-rw-r--r-- | functest/ci/check_deployment.py | 21 |
1 files changed, 8 insertions, 13 deletions
diff --git a/functest/ci/check_deployment.py b/functest/ci/check_deployment.py index 13bb4c8b..e593e17b 100644 --- a/functest/ci/check_deployment.py +++ b/functest/ci/check_deployment.py @@ -20,7 +20,6 @@ import logging.config import os import pkg_resources import socket -import time from urlparse import urlparse from snaps.openstack.utils import glance_utils @@ -34,20 +33,16 @@ __author__ = "Jose Lausuch <jose.lausuch@ericsson.com>" LOGGER = logging.getLogger(__name__) -def verify_connectivity(adress, port, timeout=10): +def verify_connectivity(adress, port): """ Returns true if an ip/port is reachable""" connection = socket.socket() - count = 0 - while count < timeout: - try: - connection.connect((adress, port)) - LOGGER.debug('%s:%s is reachable!', adress, port) - return True - except socket.error: - count += 1 - time.sleep(1) - continue - LOGGER.error('%s:%s is not reachable.', adress, port) + connection.settimeout(10) + try: + connection.connect((adress, port)) + LOGGER.debug('%s:%s is reachable!', adress, port) + return True + except socket.error: + LOGGER.error('%s:%s is not reachable.', adress, port) return False |