mirror of
https://github.com/linuxkit/linuxkit.git
synced 2026-04-07 13:07:50 +00:00
match go version in CI to version in go-compile
Signed-off-by: Avi Deitcher <avi@deitcher.net>
This commit is contained in:
@@ -477,7 +477,7 @@ func (g *GCPClient) pollOperationStatus(operationName string) error {
|
||||
return fmt.Errorf("error fetching operation status: %v", err)
|
||||
}
|
||||
if operation.Error != nil {
|
||||
return fmt.Errorf("error running operation: %s", operation.Error)
|
||||
return fmt.Errorf("error running operation: %v", operation.Error)
|
||||
}
|
||||
if operation.Status == "DONE" {
|
||||
return nil
|
||||
@@ -494,7 +494,7 @@ func (g *GCPClient) pollZoneOperationStatus(operationName, zone string) error {
|
||||
return fmt.Errorf("error fetching operation status: %v", err)
|
||||
}
|
||||
if operation.Error != nil {
|
||||
return fmt.Errorf("error running operation: %s", operation.Error)
|
||||
return fmt.Errorf("error running operation: %v", operation.Error)
|
||||
}
|
||||
if operation.Status == "DONE" {
|
||||
return nil
|
||||
|
||||
Reference in New Issue
Block a user