You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Output:
InvalidInputError Traceback (most recent call last)
Input In [9], in <cell line: 1>()
----> 1 t.jobs.resubmitJob(jobuuid=job_id)
File /usr/local/lib/python3.8/site-packages/tapipy/tapis.py:1357, in Operation.call(self, **kwargs)
1355 # for any kind of non-20x response, we need to raise an error.
1356 if resp.status_code in (400, 404):
-> 1357 raise errors.InvalidInputError(msg=error_msg, version=version, request=r, response=resp)
1358 if resp.status_code in (401, 403):
1359 raise errors.NotAuthorizedError(msg=error_msg, version=version, request=r, response=resp)
InvalidInputError: message: JOBS_JOBRESUBMIT_NOT_FOUND Job 4c02f744-1756-42ca-859f-88cf9ce4ee5e-007 not found in resubmission cataloge : DB_SELECT_UUID_ERROR Unable to select JobResubmit with uuid 4c02f744-1756-42ca-859f-88cf9ce4ee5e-007: ERROR: column "uuid" does not exist
Hint: Perhaps you meant to reference the column "job_resubmit.id".
The text was updated successfully, but these errors were encountered:
The following error was reported. Improve the error message when the referenced job is not found and analyze how the SQL root error could occur.
Code:
job_id = "4c02f744-1756-42ca-859f-88cf9ce4ee5e-007"
t.jobs.resubmitJob(jobuuid=job_id)
Output:
InvalidInputError Traceback (most recent call last)
Input In [9], in <cell line: 1>()
----> 1 t.jobs.resubmitJob(jobuuid=job_id)
File /usr/local/lib/python3.8/site-packages/tapipy/tapis.py:1357, in Operation.call(self, **kwargs)
1355 # for any kind of non-20x response, we need to raise an error.
1356 if resp.status_code in (400, 404):
-> 1357 raise errors.InvalidInputError(msg=error_msg, version=version, request=r, response=resp)
1358 if resp.status_code in (401, 403):
1359 raise errors.NotAuthorizedError(msg=error_msg, version=version, request=r, response=resp)
InvalidInputError: message: JOBS_JOBRESUBMIT_NOT_FOUND Job 4c02f744-1756-42ca-859f-88cf9ce4ee5e-007 not found in resubmission cataloge : DB_SELECT_UUID_ERROR Unable to select JobResubmit with uuid 4c02f744-1756-42ca-859f-88cf9ce4ee5e-007: ERROR: column "uuid" does not exist
Hint: Perhaps you meant to reference the column "job_resubmit.id".
The text was updated successfully, but these errors were encountered: