From ab4bac05d166641d7f1fb2cb032c434d0413ca42 Mon Sep 17 00:00:00 2001 From: Pavlo Tkach <3469726+ptkach@users.noreply.github.com> Date: Tue, 21 May 2024 15:00:25 -0400 Subject: [PATCH] Replace RegistryTestServerMain start address with ipv6 loopback (#2448) --- .../java/google/registry/server/RegistryTestServerMain.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/test/java/google/registry/server/RegistryTestServerMain.java b/core/src/test/java/google/registry/server/RegistryTestServerMain.java index 2c478a0d1..c9549ab0e 100644 --- a/core/src/test/java/google/registry/server/RegistryTestServerMain.java +++ b/core/src/test/java/google/registry/server/RegistryTestServerMain.java @@ -53,7 +53,7 @@ public final class RegistryTestServerMain { names = "--address", description = "Listening address.", validateWith = HostAndPortParameter.class) - private HostAndPort address = HostAndPort.fromString("[::]:8080"); + private HostAndPort address = HostAndPort.fromString("[::1]:8080"); @Parameter(names = "--fixtures", description = "Fixtures to load into the DB.") private List fixtures = ImmutableList.of(Fixture.BASIC);