fix: Manual scanning
All checks were successful
Deploy to Staging / Build Images (pull_request) Successful in 35s
Deploy to Staging / Deploy to Staging (pull_request) Successful in 51s
Deploy to Staging / Verify Staging (pull_request) Successful in 8s
Deploy to Staging / Notify Staging Ready (pull_request) Successful in 7s
Deploy to Staging / Notify Staging Failure (pull_request) Has been skipped

This commit is contained in:
Eric Gullickson
2026-02-11 19:57:32 -06:00
parent b97d226d44
commit a078962d3f
2 changed files with 10 additions and 5 deletions

View File

@@ -359,8 +359,8 @@ async def process_manual_job(job_id: str) -> None:
# Update status to processing
await job_queue.update_manual_job_progress(job_id, 5, "Starting extraction")
# Get job data
file_bytes = await job_queue.get_job_data(job_id)
# Get job data (must use manual-specific key prefix)
file_bytes = await job_queue.get_manual_job_data(job_id)
if not file_bytes:
await job_queue.fail_manual_job(job_id, "Job data not found")
return