We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 626882e commit c51ecf6Copy full SHA for c51ecf6
packages/backends/postgres/src/postgres-backend.ts
@@ -43,7 +43,7 @@ export default class PostgresBackend implements Backend {
43
script: job.script,
44
args: this.knex.raw("?", [JSON.stringify(job.args)]),
45
timeout: job.timeout,
46
- state: job.state
+ state: job.state,
47
};
48
49
const inserted = await this.knex("sidequest_jobs").insert(data).returning("*");
0 commit comments