Closed VanillaSpoon closed 1 year ago
/lgtm
Nice catch 👍🏼.
/approve
[APPROVALNOTIFIER] This PR is APPROVED
This pull-request has been approved by: astefanutti
The full list of commands accepted by this bot can be found here.
The pull request process is described here
What changes have been made
Just a small fix for the formatting of a log message.
klog.Info
doesn't support string formatting and will therefore display the log as[allocatableCapacity] The available capacity to dispatch appwrapper is %v and time took to calculate is %v ...
without replacing the%v
values.I substituted
time.Now().Sub(startTime)
totime.Since(startTime)
for readability.Verification steps
Checks