We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9bd4a47 + 6210aac commit 998fe67Copy full SHA for 998fe67
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