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
Copy file name to clipboardExpand all lines: src/webapp/database.py
+6Lines changed: 6 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -511,6 +511,9 @@ class ModelTable(Base):
511
511
)
512
512
# version is unused. version is not currently supported. The webapp only knows about the name of the model and any usages of a model will only use the live version.
f"run_pdp_inference(): Job '{PDP_INFERENCE_JOB_NAME}' was not found or has no job_id."
216
+
f"run_pdp_inference(): Job '{pipeline_type}' was not found or has no job_id for '{gcs_vars['GCP_SERVICE_ACCOUNT_EMAIL']}' and '{databricks_vars['DATABRICKS_HOST_URL']}'."
200
217
)
201
218
job_id=job.job_id
202
-
LOGGER.info(f"Resolved job ID for '{PDP_INFERENCE_JOB_NAME}': {job_id}")
219
+
LOGGER.info(f"Resolved job ID for '{pipeline_type}': {job_id}")
203
220
exceptExceptionase:
204
-
LOGGER.exception(f"Job lookup failed for '{PDP_INFERENCE_JOB_NAME}'.")
221
+
LOGGER.exception(f"Job lookup failed for '{pipeline_type}'.")
205
222
raiseValueError(f"run_pdp_inference(): Failed to find job: {e}")
0 commit comments