Skip to content

Commit

Permalink
resmgr: fix resolving "qosclass" expression
Browse files Browse the repository at this point in the history
Signed-off-by: Antti Kervinen <[email protected]>
  • Loading branch information
askervin authored and klihub committed Oct 25, 2024
1 parent 6aa3471 commit 946d913
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/resmgr/cache/container.go
Original file line number Diff line number Diff line change
Expand Up @@ -1027,7 +1027,7 @@ func (c *container) EvalKey(key string) interface{} {
case resmgr.KeyNamespace:
return c.GetNamespace()
case resmgr.KeyQOSClass:
return c.GetQOSClass()
return string(c.GetQOSClass())
case resmgr.KeyLabels:
return c.Ctr.GetLabels()
case resmgr.KeyTags:
Expand Down

0 comments on commit 946d913

Please sign in to comment.