Skip to content

Commit

Permalink
docs(README): add note about PostgreSQL schema error (#117)
Browse files Browse the repository at this point in the history
Co-authored-by: Benjie Gillam <[email protected]>
  • Loading branch information
joshbwlng and benjie authored Jun 2, 2020
1 parent e6cdac5 commit f01c70f
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1020,6 +1020,16 @@ If the worker completely dies unexpectedly (e.g. `process.exit()`, segfault,
available to be processed again automatically. You can free them up earlier than
this by clearing the `locked_at` and `locked_by` columns on the relevant tables.

If the worker schema has not yet been installed into your database, the
following error may appear in your PostgreSQL server logs. This is completely
harmless and should only appear once as the worker will create the schema for
you.

```
ERROR: relation "graphile_worker.migrations" does not exist at character 16
STATEMENT: select id from "graphile_worker".migrations order by id desc limit 1;
```

## Development

```
Expand Down

0 comments on commit f01c70f

Please sign in to comment.