You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: providers/flagd/src/main/java/dev/openfeature/contrib/providers/flagd/resolver/process/InProcessResolver.java
+19-2Lines changed: 19 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -41,6 +41,7 @@ public class InProcessResolver implements Resolver {
Copy file name to clipboardExpand all lines: providers/flagd/src/main/java/dev/openfeature/contrib/providers/flagd/resolver/process/storage/connector/sync/SyncStreamQueueSource.java
+64-13Lines changed: 64 additions & 13 deletions
Original file line number
Diff line number
Diff line change
@@ -28,12 +28,13 @@
28
28
importlombok.extern.slf4j.Slf4j;
29
29
30
30
/**
31
-
* Implements the {@link QueueSource} contract and emit flags obtained from flagd sync gRPC contract.
31
+
* Implements the {@link QueueSource} contract and emit flags obtained from
32
+
* flagd sync gRPC contract.
32
33
*/
33
34
@Slf4j
34
35
@SuppressFBWarnings(
35
36
value = {"EI_EXPOSE_REP"},
36
-
justification = "Random is used to generate a variation & flag configurations require exposing")
37
+
justification = "We need to expose the BlockingQueue to allow consumers to read from it")
Copy file name to clipboardExpand all lines: providers/flagd/src/test/java/dev/openfeature/contrib/providers/flagd/resolver/process/InProcessResolverTest.java
0 commit comments