-
Notifications
You must be signed in to change notification settings - Fork 291
Remove patch version number from error link #794
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
Conversation
CodSpeed Performance ReportMerging #794 will degrade performances by 11.3%Comparing Summary
Benchmarks breakdown
|
Codecov Report
Additional details and impacted files@@ Coverage Diff @@
## main #794 +/- ##
==========================================
- Coverage 93.53% 93.52% -0.01%
==========================================
Files 100 100
Lines 14376 14379 +3
Branches 25 25
==========================================
+ Hits 13446 13448 +2
- Misses 924 925 +1
Partials 6 6
Continue to review full report in Codecov by Sentry.
|
66ea0fc
to
e9f230c
Compare
please review |
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.
otherwise LGTM.
src/errors/validation_exception.rs
Outdated
get_pydantic_version(py).unwrap_or("latest") | ||
) | ||
})) | ||
let pydantic_version = match get_pydantic_version(py) { |
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.
we need to do this inside the get_or_init
to avoid the overhead of calling this each time, best to create a new function including this logic and the format!
please review |
thanks so much. |
Fixes pydantic/pydantic#6521
Selected Reviewer: @davidhewitt