Fix non-constant log strings
Newer versions of the go compiler (1.24 in this case) fail when running go test during a mock rebuild of the srpm created by 'make srpm' on Fedora 42. Even though we currently don't support go1.24, fix these so they don't become an issue when we do.
This commit is contained in:
parent
af0543d27c
commit
73101d2ff2
3 changed files with 3 additions and 3 deletions
|
|
@ -26,7 +26,7 @@ func BuildJWTAuthHandler(keysURLs []string, caFile, aclFile string, exclude []st
|
|||
return
|
||||
}
|
||||
|
||||
logger.Info(context.Background(), aclFile)
|
||||
logger.Info(context.Background(), "aclFile = %s", aclFile)
|
||||
|
||||
builder := authentication.NewHandler().
|
||||
Logger(logger)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue