You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Recently, on some pipelines, aborting a job started throwing logging exceptions at the end of NameError: name 'open' is not defined. This exception is raised in the logging's __init__.py inside FileHandler._open. It calls the core Python function open which should never be undefined.
Speculation: I suspect it has something to do with threads and code still running after the main wpull thread has already terminated, causing code to be unloaded. And presumably it's related to either the Python version or how Python is installed on those pipelines. Although I haven't investigated in detail, this appears to happen only on Buster-based pipelines. Buster ships with Python 3.7, which wpull doesn't support yet, so I installed Python 3.6 through pyenv on those machines instead.
Example from just a few minutes ago: 4w2xo5ti1en0cf332n067uoag
The text was updated successfully, but these errors were encountered:
Recently, on some pipelines, aborting a job started throwing logging exceptions at the end of
NameError: name 'open' is not defined
. This exception is raised in the logging's__init__.py
insideFileHandler._open
. It calls the core Python functionopen
which should never be undefined.Speculation: I suspect it has something to do with threads and code still running after the main wpull thread has already terminated, causing code to be unloaded. And presumably it's related to either the Python version or how Python is installed on those pipelines. Although I haven't investigated in detail, this appears to happen only on Buster-based pipelines. Buster ships with Python 3.7, which wpull doesn't support yet, so I installed Python 3.6 through pyenv on those machines instead.
Example from just a few minutes ago: 4w2xo5ti1en0cf332n067uoag
The text was updated successfully, but these errors were encountered: