Open
Description
Lines 314 to 322 in 64d6c48
In luigi.contrib.sge.py
at line 321, text=True
option have to be given in subprocess.check_output(['qstat'])
because _parse_qstat_state
function only allow string type.
The current code always raise TypeError
in _parse_qstat_state
when running _track_job
method.
If there is no reason qstat_out
variable should be bytes type, I believe it is ideal to change subprocess.check_output(['qstat'])
to subprocess.check_output(['qstat'], text=True)
.
Metadata
Metadata
Assignees
Labels
No labels