We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f94f3e commit b370b8cCopy full SHA for b370b8c
src/ngx_http_lua_event.h
@@ -51,6 +51,7 @@ ngx_http_lua_init_event(ngx_cycle_t *cycle)
51
52
if (ngx_strcmp(ecf->name, "epoll") == 0) {
53
ngx_http_lua_event_actions = ngx_http_lua_epoll;
54
+
55
} else
56
57
#endif
@@ -59,6 +60,7 @@ ngx_http_lua_init_event(ngx_cycle_t *cycle)
59
60
61
if (ngx_strcmp(ecf->name, "poll") == 0) {
62
ngx_http_lua_event_actions = ngx_http_lua_poll;
63
64
65
66
@@ -67,6 +69,7 @@ ngx_http_lua_init_event(ngx_cycle_t *cycle)
67
69
68
70
if (ngx_strcmp(ecf->name, "kqueue") == 0) {
71
ngx_http_lua_event_actions = ngx_http_lua_kqueue;
72
73
74
75
0 commit comments