-
Notifications
You must be signed in to change notification settings - Fork 94
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
Add rolling has optional data enum value. Remove SarifLogger tool parameter. #2614
Conversation
The OptionallyEmittedData.RollingHashPartialFingerprints flag doesn't seem to be referenced anywhere yet. Is that postponed to a future PR or am I just not looking at the right place? |
That's correct, not yet wired up. The plan is to integrate this with the FileRegionsCache, following the same pattern as handling the new line indices in that type. We have a large-scale pipeline design change coming that might lead us to reconsider all hash production, though, which is why I delayed the work. In reply to: 1412629616 |
return ComputeHashes(stream); | ||
} | ||
} | ||
catch (IOException) { } |
Check notice
Code scanning / CodeQL
Poor error handling: empty catch block
} | ||
} | ||
catch (IOException) { } | ||
catch (UnauthorizedAccessException) { } |
Check notice
Code scanning / CodeQL
Poor error handling: empty catch block
No description provided.