Skip to content

Commit

Permalink
Merge pull request #1532 from tkan145/typo-fix
Browse files Browse the repository at this point in the history
Fix typos
  • Loading branch information
tkan145 authored Jan 31, 2025
2 parents d3d6c5f + 2d9faa7 commit ff932e1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion doc/parameters.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ that improve the performance of the whole gateway.

### `APICAST_OIDC_LOG_LEVEL`

**Values:** debug | info | notice | warn | error | crit | alert | emerg
**Values:** debug | info | notice | warn | err | crit | alert | emerg
**Default:** err

Allows to set the log level for the logs related to OpenID Connect integration
Expand Down
2 changes: 1 addition & 1 deletion gateway/src/resty/resolver/cache.lua
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ function _M.store(self, qname, qtype, answer, force_ttl)
end

local key = name .. ":" .. qtype
ngx.log(ngx.DEBUG, 'resolver cache write ', key, ' with TLL ', ttl)
ngx.log(ngx.DEBUG, 'resolver cache write ', key, ' with TTL ', ttl)

return cache:set(key, answer, ttl)
end
Expand Down

0 comments on commit ff932e1

Please sign in to comment.