Skip to content

Commit 8ce0eec

Browse files
authored
feat: fallback config for testkit actor system (#2377)
* feat: fallback config for testkit actor system * fmt
1 parent 899acf5 commit 8ce0eec

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

sdk/java-sdk-protobuf-testkit/src/main/java/kalix/javasdk/testkit/KalixTestKit.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -636,7 +636,8 @@ public KalixTestKit start(final Config config) {
636636
testSystem =
637637
ActorSystem.create(
638638
"KalixTestkit",
639-
ConfigFactory.parseString("akka.http.server.preview.enable-http2 = true"));
639+
ConfigFactory.parseString("akka.http.server.preview.enable-http2 = true")
640+
.withFallback(config));
640641

641642
int eventingBackendPort = startEventingTestkit(useTestContainers);
642643
runProxy(useTestContainers, port, eventingBackendPort);

0 commit comments

Comments
 (0)