https://bz.apache.org/bugzilla/show_bug.cgi?id=59542
Eric Covener <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |PatchAvailable --- Comment #6 from Eric Covener <[email protected]> --- I was able to generate my own errors with a dummy LuaTranslateName and "LuaScope thread". This seemed to do the trick, but I can't tell for sure if tasks might jump h2 threads over time. Index: modules/http2/h2_worker.c =================================================================== --- modules/http2/h2_worker.c (revision 1743942) +++ modules/http2/h2_worker.c (working copy) @@ -42,7 +42,8 @@ /* Get a h2_task from the main workers queue. */ worker->get_next(worker, worker->ctx, &task, &sticky); while (task) { - + task->c->current_thread = thread; + h2_task_do(task); /* report the task done and maybe get another one from the same * mplx (= master connection), if we can be sticky. -- You are receiving this mail because: You are the assignee for the bug. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
