Skip to content

Commit

Permalink
fix: Cancel any replays when the filter stage stops
Browse files Browse the repository at this point in the history
  • Loading branch information
johanandren committed Sep 17, 2024
1 parent 227047e commit 361e8f9
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -463,6 +463,11 @@ import org.slf4j.LoggerFactory
pullInEnvOrReplay()
}
})

override def postStop(): Unit = {
replayInProgress.values.foreach(_.queue.cancel())
replayInProgress = Map.empty
}
}

}

0 comments on commit 361e8f9

Please sign in to comment.