-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
Lack of stacktrace during multi-processing crashes makes debugging harder #4165
Comments
I found the root cause, see #4215. When linting the code mentioned in #4215 with more than 1 job you get the MaybeEncodingError exception, i.e. With bug.py holding;
You get;
and;
|
Thank you for the investigation. So if #4215 is fixed this one is too ? |
Unless you don't want this issue covering up other's, i.e this issue
covered up
#4215 <#4215> making it harder to
address.
…On Mon, Mar 8, 2021, 17:57 Pierre Sassoulas ***@***.***> wrote:
Thank you for the investigation. So if #4215
<#4215> is fixed this one is too ?
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#4165 (comment)>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/ADXQ4KQDE2YNMQ3O6ESJHWTTCT6YHANCNFSM4YMQYZCQ>
.
|
OK, I think I understood, the crash was coming from another problem but this issue is about the difficulty to find the real problem and not the crash itself. |
Exactly. Thank you.
…On Mon, Mar 8, 2021, 18:32 Pierre Sassoulas ***@***.***> wrote:
OK, I think I understood, the crash was coming from another problem but
this issue is about the difficulty to find the real problem and not the
crash itself.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#4165 (comment)>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/ADXQ4KWZRQEVTZZPE2A6LZ3TCUC2BANCNFSM4YMQYZCQ>
.
|
@Pierre-Sassoulas I think you fixed this recently, right? |
Probably fixed in #5987, thank you @DanielNoord |
pylint 2.7.x crashes when doing a 7 job run with about 480 files.
This does not happen with pylint 2.6.x
Steps to reproduce
Run;
pylint -j7 [with about 480 files]
Current behavior
Crash with following stack trace;
Expected behavior
No crash
pylint --version output
Crashing pylint version;
pylint 2.7.2
astroid 2.5.1
Python 3.9.2 (tags/v3.9.2:1a79785, Feb 19 2021, 13:44:55) [MSC v.1928 64 bit (AMD64)]
Not crashing pylint version;
pylint 2.6.2
astroid 2.4.2
Python 3.9.2 (tags/v3.9.2:1a79785, Feb 19 2021, 13:44:55) [MSC v.1928 64 bit (AMD64)]
The text was updated successfully, but these errors were encountered: