StefanRRichter edited a comment on issue #5058: [FLINK-5465] [streaming] Wait for pending timer threads to finish or … URL: https://github.com/apache/flink/pull/5058#issuecomment-412353501 @Aitozi the problem with the code is that (at least in that version of Flink) the thread could still become interrupted as part of an ongoing cancellation while waiting for the timer service to finish. It will then immediately unblock with `InterruptedException` and the bad things can still happen. The code needs to complete the shutdown even in the face of interruption or else you can still segault from time to time.
---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
