File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -97,7 +97,7 @@ of this library in the particular OpenResty release you are using. Otherwise you
97
97
into serious comaptibility issues.
98
98
99
99
* 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 )
100
- * [ ngx_http_lua_module] ( https://github.com/openresty/lua-nginx-module ) v0.10.14 .
100
+ * [ ngx_http_lua_module] ( https://github.com/openresty/lua-nginx-module ) v0.10.15 .
101
101
* [ ngx_stream_lua_module] ( https://github.com/openresty/lua-nginx-module ) v0.0.6.
102
102
* [ lua-resty-lrucache] ( https://github.com/openresty/lua-resty-lrucache )
103
103
Original file line number Diff line number Diff line change @@ -18,9 +18,9 @@ local FREE_LIST_REF = 0
18
18
if subsystem == ' http' then
19
19
if not ngx .config
20
20
or not ngx .config .ngx_lua_version
21
- or ngx .config .ngx_lua_version ~= 10014
21
+ or ngx .config .ngx_lua_version ~= 10015
22
22
then
23
- error (" ngx_http_lua_module 0.10.14 required" )
23
+ error (" ngx_http_lua_module 0.10.15 required" )
24
24
end
25
25
26
26
elseif subsystem == ' stream' then
@@ -32,7 +32,7 @@ elseif subsystem == 'stream' then
32
32
end
33
33
34
34
else
35
- error (" ngx_http_lua_module 0.10.14 or "
35
+ error (" ngx_http_lua_module 0.10.15 or "
36
36
.. " ngx_stream_lua_module 0.0.6 required" )
37
37
end
38
38
You can’t perform that action at this time.
0 commit comments