Commit 1feeda45 authored by Tatsuhiro Tsujikawa's avatar Tatsuhiro Tsujikawa

nghttpx: Fix bug that worker process never exit

parent 6d29de0f
......@@ -596,7 +596,7 @@ CloseWait::~CloseWait() {
--worker_stat->num_close_waits;
if (worker->get_graceful_shutdown() && worker_stat->num_connections == 0 &&
worker_stat->num_close_waits) {
worker_stat->num_close_waits == 0) {
ev_break(loop);
}
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment