LFUtils: When debug is on, clearly state all stations have appeared in success case

Signed-off-by: Matthew Stidham <stidmatt@gmail.com>
This commit is contained in:
Matthew Stidham
2022-01-27 17:07:58 -08:00
committed by shivam
parent 3426f22bcc
commit ec3a09b60f

View File

@@ -715,6 +715,8 @@ def wait_until_ports_appear(base_url="http://localhost:8080", port_list=(), debu
if debug:
print('Found %s out of %s stations in %s out of %s tries in wait_until_ports_appear' % (len(found_stations), len(port_list), attempt, timeout/2))
else:
if debug:
print('All %s stations appeared' % len(found_stations))
return True
if debug: