Skip to content

Commit

Permalink
ci(flagd): remove sync server as it is part of flagd by now (#1100)
Browse files Browse the repository at this point in the history
Signed-off-by: Simon Schrottner <[email protected]>
  • Loading branch information
aepfli authored Nov 26, 2024
1 parent 40abd8e commit 8a62ea8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ async function setup() {
const containers: StartedTestContainer[] = [];

console.log('Setting flagd provider...');
const unstable = await new GenericContainer(`ghcr.io/open-feature/sync-testbed-unstable:${IMAGE_VERSION}`)
.withExposedPorts(9090)
const unstable = await new GenericContainer(`ghcr.io/open-feature/flagd-testbed-unstable:${IMAGE_VERSION}`)
.withExposedPorts(8015)
.start();
containers.push(unstable);
await OpenFeature.setProviderAndWait(
Expand Down
4 changes: 2 additions & 2 deletions libs/providers/flagd/src/e2e/tests/in-process.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ async function setup() {

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

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

0 comments on commit 8a62ea8

Please sign in to comment.