diff options
-rwxr-xr-x | testcases/features/sfc/sfc.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/testcases/features/sfc/sfc.py b/testcases/features/sfc/sfc.py index f8af51060..3cf1052b6 100755 --- a/testcases/features/sfc/sfc.py +++ b/testcases/features/sfc/sfc.py @@ -238,6 +238,11 @@ def main(): except: logger.debug("Problems assigning floating IP to SFs") + # If no IPs were obtained, then we cant continue + if not ips: + logger.error('Failed to obtain IPs, cant continue, exiting') + return + logger.debug("Floating IPs for SFs: %s..." % ips) # SSH TO START THE VXLAN_TOOL ON SF1 |