Skip to content

Commit 92a0499

Browse files
authored
fix: broken netty transport (#834)
Signed-off-by: Todd Baert <todd.baert@dynatrace.com>
1 parent cf77d56 commit 92a0499

File tree

3 files changed

+6
-14
lines changed

3 files changed

+6
-14
lines changed

providers/flagd/CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ In vscode for instance, the following settings are recommended:
2323
The continuous integration runs a set of [gherkin e2e tests](https://github.com/open-feature/test-harness/blob/main/features/evaluation.feature) using [`flagd`](https://github.com/open-feature/flagd). These tests do not run with the default maven profile. If you'd like to run them locally, you can start the flagd testbed with
2424

2525
```
26-
docker-compose up -d
26+
docker-compose up
2727
```
2828
and then run
2929
```

providers/flagd/docker-compose.yaml

Lines changed: 4 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,17 @@
11
services:
22
flagd:
3-
build:
4-
context: test-harness
5-
dockerfile: flagd/Dockerfile
3+
image: ghcr.io/open-feature/flagd-testbed:v0.5.4
64
ports:
75
- 8013:8013
86
flagd-unstable:
9-
build:
10-
context: test-harness
11-
dockerfile: flagd/Dockerfile.unstable
7+
image: ghcr.io/open-feature/flagd-testbed-unstable:v0.5.4
128
ports:
139
- 8014:8013
1410
flagd-sync:
15-
build:
16-
context: test-harness
17-
dockerfile: sync/Dockerfile
11+
image: ghcr.io/open-feature/sync-testbed:v0.5.4
1812
ports:
1913
- 9090:9090
2014
flagd-sync-unstable:
21-
build:
22-
context: test-harness
23-
dockerfile: sync/Dockerfile.unstable
15+
image: ghcr.io/open-feature/sync-testbed-unstable:v0.5.4
2416
ports:
2517
- 9091:9090

providers/flagd/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
<!-- we only support unix sockets on linux, via epoll native lib -->
6565
<groupId>io.netty</groupId>
6666
<artifactId>netty-transport-native-epoll</artifactId>
67-
<version>4.1.111.Final</version>
67+
<version>4.1.110.Final</version>
6868
<!-- TODO: with 5+ (still alpha), arm is support and we should package multiple versions -->
6969
<classifier>linux-x86_64</classifier>
7070
</dependency>

0 commit comments

Comments
 (0)