Skip to content

Commit

Permalink
KafkaStreamsProducer no longer shuts down the injected executorservice
Browse files Browse the repository at this point in the history
Fixes quarkusio#43228

(cherry picked from commit 75e7d58)
  • Loading branch information
ozangunalp authored and gsmet committed Sep 13, 2024
1 parent 7133446 commit b8062cc
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 b8062cc

Please sign in to comment.