Hong Phuc
09/28/2025, 5:58 AMThreadPoolExecutor
?
In the case of jetty, I can see that the handler creates its own ThreadPoolExecutor
, and the execute
function of the Jetty embedded server (which will call to the underlying threadpool of Jetty to fun a task) was never stopped at during the execution of a call in debug mode, which indicates it was not called at all.Aleksei Tirman [JB]
09/30/2025, 11:43 AMJettyKtorHandler
is used to handle HTTP calls. The name of the current header logged in the handler matches the thread name defined for the executer. For example:
ktor-jetty-9000-17
Can you describe your problem in more detail?Hong Phuc
10/05/2025, 11:04 AM