diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index cbbd81fd..bb9bd1fa 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -21,8 +21,11 @@ Read more: ## Pending +- Fix loading tasks on Windows (use URLs rather than file paths) - thanks + @hiepxanh - Add `cleanup` function to remove unused queues, stale task identifiers, and - permanently failed jobs. + permanently failed jobs - thanks @christophemacabiau +- Fix logger scope for workers - thanks @jcapcik ## v0.16.1 diff --git a/__tests__/runner.runOnce.test.ts b/__tests__/runner.runOnce.test.ts index 7fa952cb..2af7b503 100644 --- a/__tests__/runner.runOnce.test.ts +++ b/__tests__/runner.runOnce.test.ts @@ -11,6 +11,9 @@ import { withPgPool, } from "./helpers"; +delete process.env.DATABASE_URL; +delete process.env.PGDATABASE; + function setEnvvars(env: { [key: string]: string | undefined }) { Object.entries(env).forEach(([key, val]) => { if (val === undefined) {