-
Notifications
You must be signed in to change notification settings - Fork 5.4k
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
Closed
yanjunxiang-google
wants to merge
16
commits into
envoyproxy:main
from
yanjunxiang-google:append_def_true
Closed
Changes from all commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
a5cb948
Ext_proc: changing the append default value to be true and protect it
yanjunxiang-google ff54a5b
change runtime guard naming
yanjunxiang-google 928d3fe
fix format error
yanjunxiang-google 1c08bfb
Merge branch 'main' of https://github.com/envoyproxy/envoy into appen…
yanjunxiang-google 65e85bf
change behavior to have append default to be true
yanjunxiang-google 6e282a9
fix format
yanjunxiang-google 39edfdb
fix typo
yanjunxiang-google b802028
fix tests
yanjunxiang-google c9229ad
addessing comments
yanjunxiang-google b2ed87d
addressing comments
yanjunxiang-google 92fa007
Merge branch 'main' of https://github.com/envoyproxy/envoy into appen…
yanjunxiang-google fa3a293
set the runtime to false to keep the legacy behavior. Adding stats a…
yanjunxiang-google 2290dc5
fix format
yanjunxiang-google 78f12c5
merge upstream main
yanjunxiang-google 17e1c46
adding back API doc as default append is false
yanjunxiang-google 6be6f99
fix format
yanjunxiang-google File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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
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 | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.
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.
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".