We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent df1b019 commit 3078ca6Copy full SHA for 3078ca6
src/ngx_http_lua_headers.c
@@ -113,7 +113,7 @@ ngx_http_lua_ngx_req_raw_header(lua_State *L)
113
114
#if (NGX_HTTP_V2)
115
if (mr->stream) {
116
- return luaL_error(L, "http v2 not supported yet");
+ return luaL_error(L, "http2 requests not supported yet");
117
}
118
#endif
119
src/ngx_http_lua_subrequest.c
@@ -166,6 +166,12 @@ ngx_http_lua_ngx_location_capture_multi(lua_State *L)
166
return luaL_error(L, "no request object found");
167
168
169
+#if (NGX_HTTP_V2)
170
+ if (r->main->stream) {
171
172
+ }
173
+#endif
174
+
175
ctx = ngx_http_get_module_ctx(r, ngx_http_lua_module);
176
if (ctx == NULL) {
177
return luaL_error(L, "no ctx found");
0 commit comments