diff options
-rw-r--r-- | functest/opnfv_tests/vnf/router/vnf_controller/ssh_client.py | 5 | ||||
-rw-r--r-- | functest/opnfv_tests/vnf/router/vnf_controller/vm_controller.py | 5 |
2 files changed, 6 insertions, 4 deletions
diff --git a/functest/opnfv_tests/vnf/router/vnf_controller/ssh_client.py b/functest/opnfv_tests/vnf/router/vnf_controller/ssh_client.py index 628afd30e..c5f554cbd 100644 --- a/functest/opnfv_tests/vnf/router/vnf_controller/ssh_client.py +++ b/functest/opnfv_tests/vnf/router/vnf_controller/ssh_client.py @@ -80,9 +80,8 @@ class SshClient(object): # pylint: disable=too-many-instance-attributes retrycount -= 1 if retrycount == 0: - self.logger.error("Cannot establish connection to IP '%s'. " + - "Aborting", - self.ip_address) + self.logger.warn( + "Cannot establish connection to IP '%s'", self.ip_address) self.connected = False return self.connected diff --git a/functest/opnfv_tests/vnf/router/vnf_controller/vm_controller.py b/functest/opnfv_tests/vnf/router/vnf_controller/vm_controller.py index 10e486455..56dc1e237 100644 --- a/functest/opnfv_tests/vnf/router/vnf_controller/vm_controller.py +++ b/functest/opnfv_tests/vnf/router/vnf_controller/vm_controller.py @@ -85,12 +85,15 @@ class VmController(object): result = ssh.connect(self.ssh_connect_timeout, self.ssh_connect_retry_count) if not result: - self.logger.debug("try to vm reboot.") + self.logger.warn("Reboot %s", vm_info["vnf_name"]) self.util.reboot_vm(vm_info["vnf_name"]) time.sleep(self.reboot_wait) result = ssh.connect(self.ssh_connect_timeout, self.ssh_connect_retry_count) if not result: + self.logger.error( + "Cannot establish connection to IP '%s'. Aborting!", + ssh.ip_address) return None (result, _) = self.command_create_and_execute( |