commit | 4afe058078d5669a264f6e35ee081cabfc15c0c3 | [log] [tgz] |
---|---|---|
author | Vasyl Saienko <vsaienko@mirantis.com> | Wed Dec 22 11:54:04 2021 +0200 |
committer | Pavlo Shchelokovskyy <shchelokovskyy@gmail.com> | Wed Jun 08 16:27:52 2022 +0300 |
tree | f2fdd7ab98e3080f1b997bffb895eaacc8588a03 | |
parent | 99b5214eabd830931caf7a4ea5d11b396e2b34ad [diff] |
Retry on any exception afeter FIP update Partially cherry-pick I25e85af8e626664c0a562ea0a5b8faf8b29210a5 which increases timeout retries. Related-Prod: PRODX-20388 Change-Id: I918989cb23c7397c1c428f840346bf5fd5591e30 (cherry picked from commit 8baa0223ec16f6e1c5e1a369e2b6d0b0fec7966d)
diff --git a/neutron_tempest_plugin/scenario/test_floatingip.py b/neutron_tempest_plugin/scenario/test_floatingip.py index a5afc73..6aace4d 100644 --- a/neutron_tempest_plugin/scenario/test_floatingip.py +++ b/neutron_tempest_plugin/scenario/test_floatingip.py
@@ -470,7 +470,9 @@ def _wait_for_fip_associated(): try: self.check_servers_hostnames(servers[-1:], log_errors=False) - except (AssertionError, exceptions.SSHTimeout): + # NOTE(vsaienko): it might take some time by neutron to update VIP + # retry on any exception here. + except Exception: return False return True