Skip to content

Commit

Permalink
add missing methods in lua logs to remove logs about it
Browse files Browse the repository at this point in the history
  • Loading branch information
KSmigielski committed Jul 25, 2024
1 parent 875069b commit d2582e9
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
Lists all changes with user impact.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).

## [0.20.17]
### Changed
- Add missing methods in lua scripts to remove logs about it

## [0.20.16]
### Changed
- Add JWT failure reason to metadata and use it in jwt-status field on denied requests
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 d2582e9

Please sign in to comment.