Skip to content

Commit

Permalink
fix(qrm): fix log msg in validateStaticPools (#182)
Browse files Browse the repository at this point in the history
  • Loading branch information
csfldf committed Aug 3, 2023
1 parent a0053d5 commit 8a41300
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ func (c *CPUAdvisorValidator) validateStaticPools(resp *advisorapi.ListAndWatchR

if nilStateEntry != nilRespEntry {
return fmt.Errorf("pool: %s nilStateEntry: %v and nilRespEntry: %v mismatch",
poolName, nilStateEntry, nilStateEntry)
poolName, nilStateEntry, nilRespEntry)
}
if nilStateEntry {
general.Warningf("got nil state entry for static pool: %s", poolName)
Expand Down

0 comments on commit 8a41300

Please sign in to comment.