소스 검색

bugfix for hpc queue checking

Avik Datta 4 년 전
부모
커밋
dcad01d34b
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      igf_airflow/hpc_queue.py

+ 1 - 1
igf_airflow/hpc_queue.py

@@ -15,7 +15,7 @@ def get_pbspro_job_count(job_name_prefix=''):
     with TemporaryFile() as tmp_file:
       subprocess.\
         check_call(
-          ['qstat','-f','-F','json'],
+          ['qstat','-t','-f','-F','json'],
           stdout=tmp_file)
       tmp_file.seek(0)
       json_data = tmp_file.read()