We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9bd4a47 commit 6210aacCopy full SHA for 6210aac
1 file changed
pool/capabilities/comparator.go
@@ -38,6 +38,9 @@ func (c *Comparator) Compare(desired Capabilities, available Capabilities) bool
38
if !c.isRegistered(name) {
39
continue
40
}
41
+ if name == "platform" && currCap == "ANY" {
42
+ currCap = available[name]
43
+ }
44
if !reflect.DeepEqual(currCap, available[name]) {
45
return false
46
0 commit comments