From b0f4e463eb11aa4d3564027a9c6d232236fa272e Mon Sep 17 00:00:00 2001 From: Itamar Turner-Trauring Date: Mon, 6 Feb 2023 17:48:32 -0500 Subject: [PATCH] Work with newer i2pd. --- integration/test_i2p.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/integration/test_i2p.py b/integration/test_i2p.py index 15f9d73cf..2deb01fab 100644 --- a/integration/test_i2p.py +++ b/integration/test_i2p.py @@ -55,9 +55,12 @@ def i2p_network(reactor, temp_dir, request): proto, which("docker"), ( - "docker", "run", "-p", "7656:7656", "purplei2p/i2pd:release-2.43.0", + "docker", "run", "-p", "7656:7656", "purplei2p/i2pd:release-2.45.1", # Bad URL for reseeds, so it can't talk to other routers. "--reseed.urls", "http://localhost:1/", + # Make sure we see the "ephemeral keys message" + "--log=stdout", + "--loglevel=info" ), )