Skip to content

Commit

Permalink
Merge pull request #43263 from ozangunalp/kafka_streams_shutdown_fix
Browse files Browse the repository at this point in the history
KafkaStreamsProducer no longer shuts down the injected executorservice
  • Loading branch information
gsmet authored Sep 13, 2024
2 parents e20deb4 + 75e7d58 commit c146936
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -164,9 +164,6 @@ public KafkaStreamsTopologyManager kafkaStreamsTopologyManager() {

void onStop(@Observes ShutdownEvent event) {
shutdown = true;
if (executorService != null) {
executorService.shutdown();
}
if (kafkaStreams != null) {
LOGGER.debug("Stopping Kafka Streams pipeline");
kafkaStreams.close();
Expand Down

0 comments on commit c146936

Please sign in to comment.