When running run.py, the build process hangs due to a write to sys.stdout when starting a log.
Specifics:
Python 3.10.8
The issue is line 22 of gslab_scons/log.py.
This seems to be a broader issue with stdout, but I'm not sure whether it's due to using a newer version of Python, or some change in the machines I'm using. This needs to be investigated further and fixed. A quick fix to avoid holding up work is to comment out the line, but a real fix needs to be implemented/reviewed before shipping anything with this system.
When running
run.py
, the build process hangs due to a write tosys.stdout
when starting a log.Specifics:
gslab_scons/log.py
.This seems to be a broader issue with
stdout
, but I'm not sure whether it's due to using a newer version of Python, or some change in the machines I'm using. This needs to be investigated further and fixed. A quick fix to avoid holding up work is to comment out the line, but a real fix needs to be implemented/reviewed before shipping anything with this system.