-
Notifications
You must be signed in to change notification settings - Fork 3.7k
feat: support separate client TLS certificates #27543
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
base: master-1.x
Are you sure you want to change the base?
Changes from 8 commits
401eec3
0a1fd24
02cab0b
f587913
cc846f5
24e28e5
6b1012a
f77fdde
a88759a
ebbd11a
8c05930
1784768
27a416c
9bec655
3de4c7f
5ab7d5c
69c311a
630d224
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 |
|---|---|---|
|
|
@@ -15,6 +15,7 @@ import ( | |
| // can be replaced by: | ||
| // defer CheckedClose(t, c)() | ||
| func CheckedClose(t require.TestingT, c io.Closer) func() { | ||
| require.NotNil(t, c, "CheckedClose cannot be used with a nil io.Closer") | ||
|
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. Nice 👍
Member
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. You'll never guess why I added it 😅
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. I feel seen |
||
| return func() { | ||
| if h, ok := t.(interface{ Helper() }); ok { | ||
| h.Helper() | ||
|
|
||
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.
Comment will be updated in next push.