Skip to content

Commit

Permalink
udpate to latest envoy (#4)
Browse files Browse the repository at this point in the history
* udpate to latest envoy

* add encodeMetadata
  • Loading branch information
yuval-k authored Jan 24, 2019
1 parent 44f52fb commit d4990ab
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion bazel/repository_locations.bzl
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
REPOSITORY_LOCATIONS = dict(
envoy = dict(
commit = "37bfd8ac347955661af695a417492655b21939dc",
commit = "79dca84543663c3058574f519667d71f4111840e",
remote = "https://github.com/envoyproxy/envoy",
),
inja = dict(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,9 @@ class TransformationFilter : public Http::StreamFilter {
Http::FilterDataStatus encodeData(Buffer::Instance &data,
bool end_stream) override;
Http::FilterTrailersStatus encodeTrailers(Http::HeaderMap &trailers) override;
Http::FilterMetadataStatus encodeMetadata(Http::MetadataMap&) override {
return Http::FilterMetadataStatus::Continue;
}

void setEncoderFilterCallbacks(
Http::StreamEncoderFilterCallbacks &callbacks) override {
Expand Down

0 comments on commit d4990ab

Please sign in to comment.