Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
[resolver] fix typo in log
  • Loading branch information
tkan145 committed Jan 30, 2025
commit 2d9faa70a1466e0c558679d3e22a8396a03d7eba
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