File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
java/dev/openfeature/contrib/providers/flagd/e2e Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -34,13 +34,13 @@ public static GenericContainer sync() {
3434 /**
3535 *
3636 * @param unstable if an unstable version of the container, which terminates the connection regularly should be used.
37- * @param addNetwork if set to true a custom network is attached for cross container access e.g. envoy --> sync:9090
38- * @return a {@link org.testcontainers.containers.GenericContainer} instance of a sync flagd server with the port 9090 exposed
37+ * @param addNetwork if set to true a custom network is attached for cross container access e.g. envoy --> sync:8015
38+ * @return a {@link org.testcontainers.containers.GenericContainer} instance of a sync flagd server with the port 8015 exposed
3939 */
4040 public static GenericContainer sync (boolean unstable , boolean addNetwork ) {
41- String container = generateContainerName ("sync " , unstable );
41+ String container = generateContainerName ("flagd " , unstable );
4242 GenericContainer genericContainer = new GenericContainer (DockerImageName .parse (container ))
43- .withExposedPorts (9090 );
43+ .withExposedPorts (8015 );
4444
4545 if (addNetwork ) {
4646 genericContainer .withNetwork (network );
Original file line number Diff line number Diff line change @@ -46,4 +46,4 @@ static_resources:
4646 address :
4747 socket_address :
4848 address : sync-service
49- port_value : 9090
49+ port_value : 8015
You can’t perform that action at this time.
0 commit comments