This commit is contained in:
allegroai 2022-11-27 17:32:24 +02:00
parent 65d0e15a74
commit 7016138c84
2 changed files with 31 additions and 11 deletions

View File

@ -19,10 +19,10 @@ class StdStreamPatch(object):
(not running_remotely() or DEBUG_SIMULATE_REMOTE_TASK.get()):
StdStreamPatch._stdout_proxy = PrintPatchLogger(
sys.stdout, a_logger, level=logging.INFO, load_config_defaults=load_config_defaults) \
if connect_stdout else None
if connect_stdout and not sys.stdout.closed else None
StdStreamPatch._stderr_proxy = PrintPatchLogger(
sys.stderr, a_logger, level=logging.ERROR, load_config_defaults=load_config_defaults) \
if connect_stderr else None
if connect_stderr and not sys.stderr.closed else None
if StdStreamPatch._stdout_proxy:
# noinspection PyBroadException
@ -199,11 +199,15 @@ class PrintPatchLogger(object):
self._test_lr_flush()
self.lock.acquire()
with PrintPatchLogger.recursion_protect_lock:
if hasattr(self._terminal, '_original_write'):
self._terminal._original_write(message) # noqa
else:
self._terminal.write(message)
# noinspection PyBroadException
try:
with PrintPatchLogger.recursion_protect_lock:
if hasattr(self._terminal, '_original_write'):
self._terminal._original_write(message) # noqa
else:
self._terminal.write(message)
except Exception:
pass
do_flush = '\n' in message
# check for CR character
@ -245,10 +249,14 @@ class PrintPatchLogger(object):
# what can we do, nothing
pass
else:
if hasattr(self._terminal, '_original_write'):
self._terminal._original_write(message) # noqa
else:
self._terminal.write(message)
# noinspection PyBroadException
try:
if hasattr(self._terminal, '_original_write'):
self._terminal._original_write(message) # noqa
else:
self._terminal.write(message)
except Exception:
pass
def connect(self, logger):
# refresh if needed

View File

@ -3534,6 +3534,16 @@ class Task(_Task):
# # we have to forcefully shutdown if we have forked processes, sometimes they will get stuck
# os._exit(self.__exit_hook.exit_code if self.__exit_hook and self.__exit_hook.exit_code else 0)
@staticmethod
def _clear_loggers():
# https://github.com/pytest-dev/pytest/issues/5502#issuecomment-647157873
import logging
loggers = [logging.getLogger()] + list(logging.Logger.manager.loggerDict.values())
for logger in loggers:
handlers = getattr(logger, 'handlers', [])
for handler in handlers:
logger.removeHandler(handler)
def __shutdown(self):
"""
Will happen automatically once we exit code, i.e. atexit
@ -3560,6 +3570,8 @@ class Task(_Task):
# from here only a single thread can re-enter
self._at_exit_called = get_current_thread_id()
Task._clear_loggers()
# disable lock on signal callbacks, to avoid deadlocks.
if self.__exit_hook and self.__exit_hook.signal is not None:
self.__edit_lock = False