File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -108,8 +108,8 @@ of this library in the particular OpenResty release you are using. Otherwise you
108108into serious compatibility issues.
109109
110110* LuaJIT 2.1 (for now, it is the v2.1 git branch in the official luajit-2.0 git repository: http://luajit.org/download.html )
111- * [ ngx_http_lua_module] ( https://github.com/openresty/lua-nginx-module ) v0.10.16 or v0.10.17 .
112- * [ ngx_stream_lua_module] ( https://github.com/openresty/stream-lua-nginx-module ) v0.0.8 .
111+ * [ ngx_http_lua_module] ( https://github.com/openresty/lua-nginx-module ) v0.10.18 .
112+ * [ ngx_stream_lua_module] ( https://github.com/openresty/stream-lua-nginx-module ) v0.0.9 .
113113* [ lua-resty-lrucache] ( https://github.com/openresty/lua-resty-lrucache )
114114
115115[ Back to TOC] ( #table-of-contents )
Original file line number Diff line number Diff line change @@ -19,22 +19,22 @@ if subsystem == 'http' then
1919 local ngx_lua_v = ngx .config .ngx_lua_version
2020 if not ngx .config
2121 or not ngx .config .ngx_lua_version
22- or (ngx_lua_v ~= 10016 and ngx_lua_v ~= 10017 )
22+ or (ngx_lua_v ~= 10018 )
2323 then
24- error (" ngx_http_lua_module 0.10.16 or 0.10.17 required" )
24+ error (" ngx_http_lua_module 0.10.18 required" )
2525 end
2626
2727elseif subsystem == ' stream' then
2828 if not ngx .config
2929 or not ngx .config .ngx_lua_version
30- or ngx .config .ngx_lua_version ~= 8
30+ or ngx .config .ngx_lua_version ~= 9
3131 then
32- error (" ngx_stream_lua_module 0.0.8 required" )
32+ error (" ngx_stream_lua_module 0.0.9 required" )
3333 end
3434
3535else
36- error (" ngx_http_lua_module 0.10.16 or "
37- .. " ngx_stream_lua_module 0.0.8 required" )
36+ error (" ngx_http_lua_module 0.10.18 or "
37+ .. " ngx_stream_lua_module 0.0.9 required" )
3838end
3939
4040
You can’t perform that action at this time.
0 commit comments