Skip to content

Commit

Permalink
do not generate(and override) x-request-id header
Browse files Browse the repository at this point in the history
revert this when envoyproxy/envoy#6050 lands in envoy-v1.11.0 release,
which does the right thing of being able to configure it to be generated, only when not present.
  • Loading branch information
ravilr committed Jun 5, 2019
1 parent dde7424 commit eb74fdc
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions internal/envoy/listener.go
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@ func HTTPConnectionManager(routename, accessLogPath string) listener.Filter {
"use_remote_address": {Kind: &types.Value_BoolValue{BoolValue: true}}, // TODO(jbeda) should this ever be false?
"normalize_path": {Kind: &types.Value_BoolValue{BoolValue: true}},
"idle_timeout": sv("180s"),
"generate_request_id": {Kind: &types.Value_BoolValue{BoolValue: false}},
},
},
},
Expand Down

0 comments on commit eb74fdc

Please sign in to comment.