Skip to content

Commit

Permalink
Fix passing user info to batch jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
m-mohr committed Jul 30, 2024
1 parent 7fcfd38 commit 50ca7cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/api/jobs.js
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ export default class JobsAPI {

res.send(202);

await runBatchJob(this.context, this.storage, this.user, query);
await runBatchJob(this.context, this.storage, req.user, query);
}

async getJobResultsByToken(req, res) {
Expand Down

0 comments on commit 50ca7cc

Please sign in to comment.