-
Notifications
You must be signed in to change notification settings - Fork 92
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fetch_server: support digest function and blake3 #6382
Conversation
940ab9f
to
93c847f
Compare
SizeBytes: 1, | ||
} | ||
cacheRN := digest.NewResourceName(blobDigest, instanceName, rspb.CacheType_CAS, checksumFunc) | ||
log.CtxInfof(ctx, "Looking up %s in cache", blobDigest.Hash) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
wdyt about removing these log.Info lines in the non-error cases? I think they might be a tad excessive
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good suggestion.
I will switch these to Debug level instead of removing them.
These could be fairly useful for development purposes.
Implement support for digest function in FetchBlobRequest as well as usage of Blake3 as a digest func.
Co-authored-by: Brandon Duffany <[email protected]>
Switch happy path log to Debug
aff4135
to
55556ae
Compare
Implement support for digest function in FetchBlobRequest as well as
usage of Blake3 as a digest func.