Severity: Low
Location
src/scheduler/engine.rs:352
Description
Shutdown occurs without waiting for running jobs to complete. This can lead to:
- Interrupted jobs with no cleanup
- Potential data corruption if jobs are mid-operation
- Inconsistent state in storage
Suggested Fix
Add graceful shutdown with a configurable timeout that waits for running jobs to complete before fully shutting down.
Source
Identified in PR #56 code review.
Severity: Low
Location
src/scheduler/engine.rs:352Description
Shutdown occurs without waiting for running jobs to complete. This can lead to:
Suggested Fix
Add graceful shutdown with a configurable timeout that waits for running jobs to complete before fully shutting down.
Source
Identified in PR #56 code review.