Skip to content

Commit 0e71507

Browse files
authored
ci(flagd): remove sync server as it is part of flagd by now (#1080)
Signed-off-by: Simon Schrottner <[email protected]>
1 parent 57b6c9a commit 0e71507

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

providers/flagd/src/test/java/dev/openfeature/contrib/providers/flagd/e2e/ContainerConfig.java

+4-4
Original file line numberDiff line numberDiff 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);

providers/flagd/src/test/resources/envoy-config/envoy-custom.yaml

+1-1
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)