i had to add PYTHONUNBUFFERED=1
as a default env variable to the deployer, the main_logger was blocking causing tracebacks(too much verbosity every 5 secs) and its not written to avoid blocking , in case anyone sees BlockingIOError exceptions in their deployer logs that will force flushing of stderr/out no buffering.
i had to add
`PYTHONUNBUFFERED=1`
as a default env variable to the deployer, the main_logger was blocking causing tracebacks(too much verbosity every 5 secs) and its not written to avoid blocking , in case anyone sees BlockingIOError exceptions in their deployer logs that will force flushing of stderr/out no buffering.
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
i had to add
PYTHONUNBUFFERED=1as a default env variable to the deployer, the main_logger was blocking causing tracebacks(too much verbosity every 5 secs) and its not written to avoid blocking , in case anyone sees BlockingIOError exceptions in their deployer logs that will force flushing of stderr/out no buffering.