File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ def do_submit(self, job):
5656 )
5757 if self .grouped :
5858 self .group_id = group_id
59- job .job_id = str (job_id ) + ':job_group_id' + str (group_id )
59+ job .job_id = str (job_id ) + ':job_group_id: ' + str (group_id )
6060 job_id = job .job_id
6161 else :
6262 job_id = api .job_create (
@@ -73,11 +73,11 @@ def check_status(self, job):
7373 return JobStatus .unsubmitted
7474 job_id = job .job_id
7575 group_id = None
76- if isinstance (job .job_id ,str ) and ':job_group_id' in job .job_id :
76+ if isinstance (job .job_id , str ) and ':job_group_id: ' in job .job_id :
7777 group_id = None
78- ids = job .job_id .split (":job_group_id" )
78+ ids = job .job_id .split (":job_group_id: " )
7979 job_id , group_id = int (ids [0 ]), int (ids [1 ])
80- if self .input_data .get ('grouped' ) and 'job_group_id' not in self .input_data :
80+ if self .input_data .get ('grouped' ) and ': job_group_id: ' not in self .input_data :
8181 self .group_id = group_id
8282 self .api_version = 2
8383 dlog .debug (f"debug: check_status; job.job_id:{ job_id } ; job.job_hash:{ job .job_hash } " )
You can’t perform that action at this time.
0 commit comments