Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
98413: tenantcapabilitiesauthorizer: vmodule capability not found log r=arulajmani a=adityamaru

This logline shows up a lot in unit tests that run inside a tenant. This change puts it behind vmodule=2.

Release note: None
Epic: none

Co-authored-by: adityamaru <[email protected]>
  • Loading branch information
craig[bot] and adityamaru committed Mar 11, 2023
2 parents 4050ff2 + 0b59c23 commit 884ff98
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,9 @@ func (a *Authorizer) HasCapabilityForBatch(
}
cp, found := a.capabilitiesReader.GetCapabilities(tenID)
if !found {
log.Infof(ctx,
log.VInfof(ctx, 2,
"no capability information for tenant %s; requests that require capabilities may be denied",
tenID,
)
tenID)
}

for _, ru := range ba.Requests {
Expand Down

0 comments on commit 884ff98

Please sign in to comment.