1
0
mirror of https://github.com/google/nomulus synced 2025-12-23 06:15:42 +00:00

Replace RegistryTestServerMain start address with ipv6 loopback (#2448)

This commit is contained in:
Pavlo Tkach
2024-05-21 15:00:25 -04:00
committed by GitHub
parent 8e22ce7c70
commit ab4bac05d1

View File

@@ -53,7 +53,7 @@ public final class RegistryTestServerMain {
names = "--address", names = "--address",
description = "Listening address.", description = "Listening address.",
validateWith = HostAndPortParameter.class) 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.") @Parameter(names = "--fixtures", description = "Fixtures to load into the DB.")
private List<Fixture> fixtures = ImmutableList.of(Fixture.BASIC); private List<Fixture> fixtures = ImmutableList.of(Fixture.BASIC);