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
6 changes: 3 additions & 3 deletions lib/resty/websocket/client.lua
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ local ngx_DEBUG = ngx.DEBUG
local assert = assert
local ssl_support = true

if not ngx.config
or not ngx.config.ngx_lua_version
or ngx.config.ngx_lua_version < 9011
if not ngx.config.subsystem
and (not ngx.config.ngx_lua_version
or ngx.config.ngx_lua_version < 9011)
then
ssl_support = false
end
Expand Down