Skip to content

Commit

Permalink
[Cache Proxy] fix dropped digest log message (#8339)
Browse files Browse the repository at this point in the history
  • Loading branch information
iain-macdonald authored Feb 7, 2025
1 parent 18c879a commit e12128e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion enterprise/server/atime_updater/atime_updater.go
Original file line number Diff line number Diff line change
Expand Up @@ -184,8 +184,8 @@ func (u *atimeUpdater) Enqueue(ctx context.Context, instanceName string, digests
continue
}
if updates.numDigests+1 > u.maxDigestsPerGroup {
log.CtxWarningf(ctx, "maxDigestsPerGroup exceeded for group %s, dropping %d digests", groupID, dropped)
dropped = len(digests) - enqueued - duplicate
log.CtxWarningf(ctx, "maxDigestsPerGroup exceeded for group %s, dropping %d digests", groupID, dropped)
break
}
pendingUpdate.digests[key] = struct{}{}
Expand Down

0 comments on commit e12128e

Please sign in to comment.