-
Notifications
You must be signed in to change notification settings - Fork 22
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
Send client warning when signing is disabled #322
Conversation
a7e9dcb
to
64451ca
Compare
@@ -261,13 +304,14 @@ func (b *BuildxEnv) RunTest(ctx context.Context, t *testing.T, f TestFunc) { | |||
f(ctx, gwc) | |||
return gwclient.NewResult(), nil | |||
}, ch) | |||
if err != nil { | |||
t.Fatal(err) |
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.
This fatal call here could sometimes make the test runner yell because a buildkit status message could hit the test log after the fatal is called.
Hence why I moved the <-done
after.
eb7caa3
to
3ffd398
Compare
1f0e5bb
to
45d8523
Compare
Signed-off-by: Brian Goff <cpuguy83@gmail.com>
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.
LGTM
When signing is explicitly disabled this surfaces a warning message on the client.
Example: