File tree 2 files changed +5
-5
lines changed
java/dev/openfeature/contrib/providers/flagd/e2e
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() {
34
34
/**
35
35
*
36
36
* @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
39
39
*/
40
40
public static GenericContainer sync (boolean unstable , boolean addNetwork ) {
41
- String container = generateContainerName ("sync " , unstable );
41
+ String container = generateContainerName ("flagd " , unstable );
42
42
GenericContainer genericContainer = new GenericContainer (DockerImageName .parse (container ))
43
- .withExposedPorts (9090 );
43
+ .withExposedPorts (8015 );
44
44
45
45
if (addNetwork ) {
46
46
genericContainer .withNetwork (network );
Original file line number Diff line number Diff line change @@ -46,4 +46,4 @@ static_resources:
46
46
address :
47
47
socket_address :
48
48
address : sync-service
49
- port_value : 9090
49
+ port_value : 8015
You can’t perform that action at this time.
0 commit comments