On Fri, Oct 23, 2015 at 10:42 AM, Stefan Eissing
<[email protected]> wrote:
>
> In regard to https://bz.apache.org/bugzilla/show_bug.cgi?id=58524
We possibly need this too:
Index: modules/http2/h2_worker.c
===================================================================
--- modules/http2/h2_worker.c (revision 1710105)
+++ modules/http2/h2_worker.c (working copy)
@@ -110,7 +110,7 @@ h2_worker *h2_worker_create(int id,
return NULL;
}
- apr_thread_create(&w->thread, attr, execute, w, pool);
+ apr_thread_create(&w->thread, attr, execute, w, parent_pool);
}
return w;
}
--
since the worker destroys itself in its own thread (pool == w->pool).
Also, where are the worker threads joined?