We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 749b8ce + 4a6d36b commit a721f85Copy full SHA for a721f85
changes.d/6586.fix.md
@@ -0,0 +1,2 @@
1
+Update PBS job runner to reflect error message change. This change
2
+continues to support older PBS versions.
cylc/flow/job_runner_handlers/pbs.py
@@ -81,7 +81,7 @@ class PBSHandler:
81
# N.B. The "qstat JOB_ID" command returns 1 if JOB_ID is no longer in the
82
# system, so there is no need to filter its output.
83
POLL_CMD = "qstat"
84
- POLL_CANT_CONNECT_ERR = "Connection refused"
+ POLL_CANT_CONNECT_ERR = "cannot connect to server"
85
REC_ID_FROM_SUBMIT_OUT = re.compile(r"^\s*(?P<id>\d+)", re.M)
86
SUBMIT_CMD_TMPL = "qsub '%(job)s'"
87
TIME_LIMIT_DIRECTIVE = "-l walltime"
0 commit comments