Skip to content

Commit 8a62ea8

Browse files
authored
ci(flagd): remove sync server as it is part of flagd by now (#1100)
Signed-off-by: Simon Schrottner <[email protected]>
1 parent 40abd8e commit 8a62ea8

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

libs/providers/flagd/src/e2e/tests/in-process-reconnect.spec.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ async function setup() {
1717
const containers: StartedTestContainer[] = [];
1818

1919
console.log('Setting flagd provider...');
20-
const unstable = await new GenericContainer(`ghcr.io/open-feature/sync-testbed-unstable:${IMAGE_VERSION}`)
21-
.withExposedPorts(9090)
20+
const unstable = await new GenericContainer(`ghcr.io/open-feature/flagd-testbed-unstable:${IMAGE_VERSION}`)
21+
.withExposedPorts(8015)
2222
.start();
2323
containers.push(unstable);
2424
await OpenFeature.setProviderAndWait(

libs/providers/flagd/src/e2e/tests/in-process.spec.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ async function setup() {
1818

1919
console.log('Setting flagd provider...');
2020

21-
const stable = await new GenericContainer(`ghcr.io/open-feature/sync-testbed:${IMAGE_VERSION}`)
22-
.withExposedPorts(9090)
21+
const stable = await new GenericContainer(`ghcr.io/open-feature/flagd-testbed:${IMAGE_VERSION}`)
22+
.withExposedPorts(8015)
2323
.start();
2424
containers.push(stable);
2525
OpenFeature.setProvider(

0 commit comments

Comments
 (0)