Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion RELEASE_NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
3 changes: 3 additions & 0 deletions __tests__/runner.runOnce.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down