mirror of
https://gitea.com/Lydanne/buildx.git
synced 2025-05-18 09:17:49 +08:00
Merge pull request #1281 from jedevc/fixup-1273
Prevent duplicate "failed to find driver" message
This commit is contained in:
commit
1223e759a4
@ -63,7 +63,7 @@ func driversForNodeGroup(ctx context.Context, dockerCli command.Cli, ng *store.N
|
|||||||
var err error
|
var err error
|
||||||
f, err = driver.GetFactory(ng.Driver, true)
|
f, err = driver.GetFactory(ng.Driver, true)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, errors.Errorf("failed to find driver %q", f)
|
return nil, err
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
// empty driver means nodegroup was implicitly created as a default
|
// empty driver means nodegroup was implicitly created as a default
|
||||||
|
Loading…
x
Reference in New Issue
Block a user