Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
philipp94831 committed Jun 25, 2024
1 parent 9addc66 commit 3cf0503
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
public class RunningStreams {

@NonNull
StreamsConfig config;
ImprovedStreamsConfig config;
@NonNull
Topology topology;
@NonNull
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
@Slf4j
public final class StreamsRunner implements Runner {

private final @NonNull StreamsConfig config;
private final @NonNull ImprovedStreamsConfig config;
private final @NonNull Topology topology;
private final @NonNull KafkaStreams streams;
private final @NonNull CapturingStreamsUncaughtExceptionHandler exceptionHandler;
Expand All @@ -63,7 +63,7 @@ public StreamsRunner(final @NonNull Topology topology, final @NonNull StreamsCon
*/
public StreamsRunner(final @NonNull Topology topology, final @NonNull StreamsConfig config,
final @NonNull StreamsExecutionOptions options) {
this.config = config;
this.config = new ImprovedStreamsConfig(config);
this.topology = topology;
this.streams = new KafkaStreams(topology, config);
this.exceptionHandler = new CapturingStreamsUncaughtExceptionHandler(options.createUncaughtExceptionHandler());
Expand Down

0 comments on commit 3cf0503

Please sign in to comment.