File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -19,24 +19,24 @@ local FREE_LIST_REF = 0
1919if subsystem == ' http' then
2020 if not ngx .config
2121 or not ngx .config .ngx_lua_version
22- or ngx .config .ngx_lua_version ~= 10030
22+ or ngx .config .ngx_lua_version ~= 10031
2323 then
2424 local ver = ngx .config and tostring (ngx .config .ngx_lua_version ) or ' nil'
25- error (" ngx_http_lua_module 0.10.30 required but got " .. ver )
25+ error (" ngx_http_lua_module 0.10.31 required but got " .. ver )
2626 end
2727
2828elseif subsystem == ' stream' then
2929 if not ngx .config
3030 or not ngx .config .ngx_lua_version
31- or ngx .config .ngx_lua_version ~= 18
31+ or ngx .config .ngx_lua_version ~= 19
3232 then
3333 local ver = ngx .config and tostring (ngx .config .ngx_lua_version ) or ' nil'
34- error (" ngx_stream_lua_module 0.0.18 required but got " .. ver )
34+ error (" ngx_stream_lua_module 0.0.19 required but got " .. ver )
3535 end
3636
3737else
38- error (" ngx_http_lua_module 0.10.30 or "
39- .. " ngx_stream_lua_module 0.0.18 required" )
38+ error (" ngx_http_lua_module 0.10.31 or "
39+ .. " ngx_stream_lua_module 0.0.19 required" )
4040end
4141
4242
@@ -143,7 +143,7 @@ local c_buf_type = ffi.typeof("char[?]")
143143local _M = new_tab (0 , 18 )
144144
145145
146- _M .version = " 0.1.33 "
146+ _M .version = " 0.1.34 "
147147_M .new_tab = new_tab
148148_M .clear_tab = clear_tab
149149
You can’t perform that action at this time.
0 commit comments