fix lints

This commit is contained in:
crapStone 2024-11-21 23:55:09 +01:00
parent 8e008c895a
commit ed86decb0c
No known key found for this signature in database
GPG key ID: 22D4BF0CF7CC29C8

View file

@ -257,7 +257,7 @@ func (client *Client) GiteaGetRepoBranchTimestamp(repoOwner, repoName, branchNam
log.Trace().Msgf("[cache] set cache branch %q not found", branchName)
jsonToCache, err := json.Marshal(BranchTimestamp{NotFound: true})
if err != nil {
log.Error().Err(err).Msgf("[cache] marshaling empty timestamp has returned an error", cacheKey)
log.Error().Err(err).Msgf("[cache] marshaling empty timestamp for '%s' has returned an error", cacheKey)
}
if err := client.responseCache.Set(cacheKey, jsonToCache, branchExistenceCacheTimeout); err != nil {
log.Error().Err(err).Msg("[cache] error on cache write")