Skip to content

Commit

Permalink
Merge branch 'master' into fix-jwt-cache
Browse files Browse the repository at this point in the history
  • Loading branch information
kozjan authored Jul 25, 2024
2 parents 4c732e0 + 72b542b commit d2bffad
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
## [0.20.17]
### Fixed
- Fix JWT provider configuration to not impact lds cache
- Add missing methods in lua scripts to remove logs about it

## [0.20.16]
### Changed
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,6 @@ function rejectServiceTagDuplicatingAutoServiceTag(handle)
end
end
end

function envoy_on_response(handle)
end
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
function envoy_on_request(handle)
end

function envoy_on_response(handle)
local traffic_splitting_zone_header_name = handle:metadata():get("traffic_splitting_zone_header_name") or ""
local current_zone = handle:metadata():get("current_zone") or ""
Expand Down

0 comments on commit d2bffad

Please sign in to comment.