mdedetrich commented on issue #980: URL: https://github.com/apache/incubator-pekko/issues/980#issuecomment-1899826294
You can do this already due to this change https://github.com/apache/incubator-pekko/pull/252 which has already landed. You can just make your own supervision decider, i.e. ```scala val decider: Supervision.Decider = { e => logger.error("Unhandled exception in stream", e) Supervision.Stop } ``` or am I missing something? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
