-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Ext_proc: changing the append default value to be true and protect it with a runtime #39066
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 14 commits
a5cb948
ff54a5b
928d3fe
1c08bfb
65e85bf
6e282a9
39edfdb
b802028
c9229ad
b2ed87d
92fa007
fa3a293
2290dc5
78f12c5
17e1c46
6be6f99
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -179,6 +179,7 @@ FALSE_RUNTIME_GUARD(envoy_reloadable_features_use_network_type_socket_option); | |
| FALSE_RUNTIME_GUARD(envoy_reloadable_features_quic_disable_client_early_data); | ||
|
|
||
| FALSE_RUNTIME_GUARD(envoy_reloadable_features_ext_proc_graceful_grpc_close); | ||
| FALSE_RUNTIME_GUARD(envoy_reloadable_features_ext_proc_modified_append_default_value); | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Changing the runtime default value to false based on an offline discussion about keeping the legacy behavior for now to avoid risk. This enables us to collect the data about how many ext_proc servers out there are not explicitly encoding "append". |
||
|
|
||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. nit: add empty line back to keep the next block visually separated.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. done |
||
| // Block of non-boolean flags. Use of int flags is deprecated. Do not add more. | ||
| ABSL_FLAG(uint64_t, re2_max_program_size_error_level, 100, ""); // NOLINT | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Checking ext_authz code, it had moved to take default append as true. So, this comments is stale.