feat(worker): add _add_job_warnings helper method

Delegate to JobManager.add_job_warnings for storing warnings.

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2025-11-01 23:31:34 -04:00
parent 2ab78c8552
commit 445183d5bf
2 changed files with 34 additions and 0 deletions

View File

@@ -282,6 +282,10 @@ class SimulationWorker:
return dates_to_process
def _add_job_warnings(self, warnings: List[str]) -> None:
"""Store warnings in job metadata."""
self.job_manager.add_job_warnings(self.job_id, warnings)
def get_job_info(self) -> Dict[str, Any]:
"""
Get job information.