Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/resty/logger/socket.lua
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ local _M = new_tab(0, 5)
local is_exiting

if not ngx.config or not ngx.config.ngx_lua_version
or ngx.config.ngx_lua_version < 9003 then
or (ngx.config.subsystem ~= "stream" and ngx.config.ngx_lua_version < 9003) then

is_exiting = function() return false end

Expand Down