-
Notifications
You must be signed in to change notification settings - Fork 34
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
Correct max call depth #669
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
chfast
force-pushed
the
correct_max_call_depth
branch
2 times, most recently
from
November 27, 2020 13:06
9df36dc
to
bec86e9
Compare
Codecov Report
@@ Coverage Diff @@
## master #669 +/- ##
=======================================
Coverage 99.27% 99.27%
=======================================
Files 71 71
Lines 9855 9855
=======================================
Hits 9784 9784
Misses 71 71
Flags with carried forward coverage won't be shown. Click here to find out more.
|
gumb0
approved these changes
Dec 3, 2020
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.
Looks fine, but consider merging two tests here or in #666
#666 (comment)
chfast
force-pushed
the
correct_max_call_depth
branch
from
December 4, 2020 14:20
bec86e9
to
beb59bf
Compare
gumb0
approved these changes
Dec 4, 2020
chfast
force-pushed
the
correct_max_call_depth
branch
from
December 4, 2020 16:01
beb59bf
to
c370263
Compare
chfast
force-pushed
the
correct_max_call_depth
branch
from
December 28, 2020 11:17
c370263
to
1a3a053
Compare
axic
reviewed
Dec 28, 2020
Previously there were 2049 number of recursive calls allowed (depth levels from 0 to 2048). With this change the number is reduced to 2048 (depth levels from 0 to 2047).
chfast
force-pushed
the
correct_max_call_depth
branch
from
December 28, 2020 14:56
1a3a053
to
4e411f0
Compare
axic
approved these changes
Dec 28, 2020
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Previously there were 2049 number of recursive calls allowed (depth levels from 0 to 2048). With this change the number is reduced to 2048 (depth levels from 0 to 2047).