diff --git a/scenarios/examples/simple_restart/example.py b/scenarios/examples/simple_restart/example.py index 4cb280dee4..7373731904 100644 --- a/scenarios/examples/simple_restart/example.py +++ b/scenarios/examples/simple_restart/example.py @@ -79,11 +79,13 @@ async def main(): environment={'RUST_LOG': 'aries-askar::log::target=error'}, healthcheck=alice_container.attrs['Config']['Healthcheck'], name='alice', + network='simple_restart_default', ports=alice_container.attrs['NetworkSettings']['Ports'], ) print(">>> new container:", 'alice', json.dumps(new_alice_container.attrs)) wait_until_healthy(new_alice_container) + print(">>> new alice container is healthy") # TODO run some more tests ... alice should still be connected to bob for example ...