-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
fixes #17437 - crash where error reporting > 1 #17547
Conversation
Co-authored-by: Timothee Cour <[email protected]>
Suggestion: to make it easier to go through notifications, include more detail about the issue in the PR title. |
Huh, why didn't |
(ci skip vs skip ci) |
Thanks, @timotheecour. Hmm, I wonder if we could do something like have one pipeline stage before everything, which can detect if the change is meaningful and conservatively do a skip? (just seeding a thought to think about in the background, no action needed) |
@saem in the spirit of "1 topic, 1 issue", let's move this discussion to timotheecour#675 |
Crash occurs in cases where max error reporting is greater than 1 and an object
constructor error exists in a proc body.
Without this the tracking done in semProcAux will assume construction was
successful and not be able to handled the non-semmed nodes.
Scenarios where this occurs:
errorMax
> 1This is also generally the correct direction nudging us towards proper
nkError
.fixes #17437