We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d229db6 commit 1b0b9abCopy full SHA for 1b0b9ab
crt/aws-crt-cpp/crt/aws-c-io/source/event_loop.c
@@ -120,6 +120,8 @@ static struct aws_event_loop_group *s_event_loop_group_new(
120
/* Don't pin to hyper-threads if a user cared enough to specify a NUMA node */
121
if (!pin_threads || (i < group_cpu_count && !usable_cpus[i].suspected_hyper_thread)) {
122
struct aws_thread_options thread_options = *aws_default_thread_options();
123
+ // SNOW-2111927 custom changes to keep, fixing thread handle leak from event loop.
124
+ thread_options.join_strategy = AWS_TJS_MANAGED;
125
126
struct aws_event_loop_options options = {
127
.clock = clock,
0 commit comments