-
Notifications
You must be signed in to change notification settings - Fork 166
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
Improved re-entrancy Scope Lock for Session Value Layout Render #850
Conversation
…ling errors and remove unused using statements.
Codecov Report
@@ Coverage Diff @@
## master #850 +/- ##
=====================================
- Coverage 69% 69% -0%
=====================================
Files 63 65 +2
Lines 1157 1214 +57
Branches 286 309 +23
=====================================
+ Hits 804 843 +39
+ Misses 229 226 -3
- Partials 124 145 +21
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. |
Could the Re-Entrant logic be put in an IDiposable-struct, that implements IDisposable. Where struct-constructor setup the blocker, and the dispose-method removes the blocker. Then the IDiposable-struct can used in a |
That sounds like a great idea. We will do that. |
Yes see that TryGetLock must be changed to static method that receives httpContext as input parameter. Can this be done?
|
changed as requested. I did not know that about struct, so I learned something new. |
SonarCloud Quality Gate failed. |
@bakgerman I think it looks great now. Do you have any more changes that you want to make ? |
No, I'm done with this pull if you agree |
Once again thank you for being patient with all my nit-picking. |
Also fix spelling errors and remove unused using statements. Resolves #847