Skip to content

Commit

Permalink
Release notes, fix env in test (#426)
Browse files Browse the repository at this point in the history
  • Loading branch information
benjie authored Jan 17, 2024
2 parents 913d4d8 + a0ac4b2 commit 0c6d8dd
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
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

0 comments on commit 0c6d8dd

Please sign in to comment.