2dmurali opened a new pull request, #17221: URL: https://github.com/apache/pinot/pull/17221
### Description Fixes #16979 ### Problem The `RenewableTlsUtils` prevents JVM shutdown in on-demand processes (e.g., Pinot Admin commands). Background threads monitoring SSL certificates used non-daemon threads, keeping the JVM alive indefinitely after process completion, requiring manual termination. ### Fix - Modified `NamedThreadFactory` usage in `RenewableTlsUtils` to create daemon threads by passing true as the second constructor argument - Updated r`eloadSslFactoryWhenFileStoreChanges` and `reloadSslFactory` methods to use `NamedThreadFactory` with daemon flag enabled. -- 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]
