-
The two threads (tjahzi-worker and ReadingLogBufferAndSendingHttp) are not marked as DaemonThreads. Is there a reason for this? |
Beta Was this translation helpful? Give feedback.
Answered by
tkowalcz
Oct 20, 2021
Replies: 1 comment 8 replies
-
Default thread factory from Netty does not use daemon threads, but looks like Netty 5.0 does.
That being said I'm ok with changing those threads to be daemons. |
Beta Was this translation helpful? Give feedback.
8 replies
Answer selected by
thgau
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Default thread factory from Netty does not use daemon threads, but looks like Netty 5.0 does.
ReadingLogBufferAndSendingHttp
thread is part of Agrona agent "framework" that also does not set threads to daemon by default. If Tjahzi is shut down correctly it should also close all its threads cleanly. Did you see any problems with that?That being said I'm ok with changing those threads to be daemons.