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
File system failure causes the RotatingFileHandler from the logging library to fail with OSError [Errno 9] when attempting to seek or write to a file. The exception happens internally inside the library but it might be possible to add external safeguards which will protect the scheduler process from crashing.
The text was updated successfully, but these errors were encountered:
ZMQQueueListener, which passes log records to the RotatingFileHandler, runs on a separate thread and should not cause main thread crashes. However, we can't let it fail in the background and cause the input queues to block.
File system failure causes the RotatingFileHandler from the logging library to fail with
OSError [Errno 9]
when attempting to seek or write to a file. The exception happens internally inside the library but it might be possible to add external safeguards which will protect the scheduler process from crashing.The text was updated successfully, but these errors were encountered: