Skip to content

Commit

Permalink
[resolver] Correct the key used for logging
Browse files Browse the repository at this point in the history
  • Loading branch information
tkan145 committed Oct 24, 2024
1 parent 8d92b0d commit 30711af
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
- Fixed Conditional policy evaluating incorrectly: second policy in policy chain that implement export() always triggers [PR #1485](https://github.com/3scale/APIcast/pull/1485) [THREESCALE-9320](https://issues.redhat.com/browse/THREESCALE-9320)
- Fix APIcast using stale configuration for deleted products [PR #1488](https://github.com/3scale/APIcast/pull/1488) [THREESCALE-10130](https://issues.redhat.com/browse/THREESCALE-10130)
- Fixed Mutual TLS between APIcast and the Backend API fails when using a Forward Proxy [PR #1499](https://github.com/3scale/APIcast/pull/1499) [THREESCALE-5105](https://issues.redhat.com/browse/THREESCALE-5105)
- Fixed dns cache miss [PR #1500](https://github.com/3scale/APIcast/pull/1500) [THEESCALE-9301](https://issues.redhat.com/browse/THREESCALE-9301)

### Added

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 ', name, ' with TLL ', ttl)
ngx.log(ngx.DEBUG, 'resolver cache write ', key, ' with TLL ', ttl)

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

0 comments on commit 30711af

Please sign in to comment.