-
Notifications
You must be signed in to change notification settings - Fork 179
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
Make contract update validation thread safe #5565
Conversation
…ow-go into supun/improve-migrations
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## feature/stable-cadence #5565 +/- ##
==========================================================
+ Coverage 55.80% 58.33% +2.53%
==========================================================
Files 997 945 -52
Lines 98720 90156 -8564
==========================================================
- Hits 55088 52592 -2496
+ Misses 39369 33635 -5734
+ Partials 4263 3929 -334
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
7a61f6d
to
f48ad4d
Compare
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.
👍
A regression from e3f48d4, where the initialization of the
ContractAdditionHandler
was moved to theInit
method.We still need to have it in the
Init
method, so instead of reverting the change, just make sure the usages ofContractAdditionHandler
(i.e: contract update validation) are thread safe.