Skip to content
This repository was archived by the owner on Jan 21, 2020. It is now read-only.

Commit 7a6f3af

Browse files
FrenchBenDavid Chung
authored andcommitted
Fix CI issue with returned type (#706)
Signed-off-by: French Ben <[email protected]>
1 parent 1564943 commit 7a6f3af

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/plugin/flavor/swarm/worker.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,6 @@ func (s *WorkerFlavor) Drain(flavorProperties *types.Any, inst instance.Descript
8686
return nil
8787

8888
default:
89-
return fmt.Errorf("Expected at most one node with label %s, but found %s", link.Value(), nodes)
89+
return fmt.Errorf("Expected at most one node with label %s, but found %v", link.Value(), nodes)
9090
}
9191
}

0 commit comments

Comments
 (0)