-
Notifications
You must be signed in to change notification settings - Fork 4.4k
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
xds: support built-in Stdout audit logger type #6298
Merged
Merged
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
4d8e4b7
Add test for building stdout logger
gtcooke94 f3b679c
Cleanup
gtcooke94 58b9e48
%s/steam/stream/
gtcooke94 599cb13
go mod tidy compat=1.17
gtcooke94 e5de42f
Add test with same name but generic config
gtcooke94 3f6f35a
mod tidy
gtcooke94 699a42f
vet
gtcooke94 218be79
mod tidy
gtcooke94 8d3c9c4
mod tidy
gtcooke94 f349cdc
mod tidy
gtcooke94 ed23d8f
Try different marshaler
gtcooke94 0861548
Address comment
gtcooke94 eb31885
Address comment
gtcooke94 32363cd
Cleanup test case
gtcooke94 5997a19
typo Stuct -> Struct
gtcooke94 ae08173
Address PR comments - cleanup getCustomConfig and testing types
gtcooke94 c283e73
unexport stdout logger
gtcooke94 2c689b1
Test cleanup
gtcooke94 58a309d
typo
gtcooke94 f719de2
simplify helper fn
gtcooke94 4cda2b3
use MarshalAny testutil
gtcooke94 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 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
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.
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.
I think you missed the point. Remove
createUnsupportedPb
and replace it withtestutils.MarshalAny(&v3rbacpb.RBAC_AuditLoggingOptions{})
. But this is fine too if you want, just remove thet
parameter to this function since it's effectively unused.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.
Ah I get it, changed