Skip to content

Commit

Permalink
fix(*): unsetenv unconditionally clean http/stream env
Browse files Browse the repository at this point in the history
  • Loading branch information
windmgc committed Nov 26, 2024
1 parent 9793830 commit e302e26
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion kong/cmd/utils/nginx_signals.lua
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,8 @@ end

local function unset_process_secrets_env(has_process_secrets)
if has_process_secrets then
C.unsetenv("KONG_PROCESS_SECRETS")
C.unsetenv("KONG_PROCESS_SECRETS_HTTP")
C.unsetenv("KONG_PROCESS_SECRETS_STREAM")
end
end

Expand Down

0 comments on commit e302e26

Please sign in to comment.