Skip to content

Commit 02cca87

Browse files
committed
Fixes from CI
1 parent a63680b commit 02cca87

File tree

4 files changed

+14
-12
lines changed

4 files changed

+14
-12
lines changed

.cachedValidUrls.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -223,8 +223,10 @@
223223
"https://medium.com/@Benjie/how-i-made-postgraphile-faster-than-prisma-graphql-server-in-8-hours-e66b4c511160",
224224
"https://medium.com/@awesboss/how-to-find-missing-indexes-on-foreign-keys-2faffd7e6958",
225225
"https://node-postgres.com/api/client",
226+
"https://node-postgres.com/api/pool",
226227
"https://nodejs.org/api/http.html",
227228
"https://nodejs.org/en/download/",
229+
"https://openbase.com/",
228230
"https://patreon.com/benjie",
229231
"https://politicsrewired.com/",
230232
"https://postlight.com/",

src/pages/postgraphile/background-tasks.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@ to PostgreSQL's `LISTEN/NOTIFY` pubsub features, Graphile Worker is notified
6767
when a task is queued and can fetch, execute, and complete a trivial task in
6868
2-3ms from when it was queued; this results in your system feeling very snappy.
6969

70-
Graphile Worker stores tasks into its own schema within PostgreSQL, and offers
71-
a simple SQL API to create jobs. Queueing a job might look like:
70+
Graphile Worker stores tasks into its own schema within PostgreSQL, and offers a
71+
simple SQL API to create jobs. Queueing a job might look like:
7272

7373
```sql
7474
SELECT graphile_worker.add_job('hello', json_build_object('name', 'Bobby Tables'));

src/pages/postgraphile/running-postgraphile-as-a-library-in-docker.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -210,11 +210,11 @@ Each container can be accessed at the following addresses. Note if you run
210210
Docker Toolbox on Windows Home, you can get your Docker machine IP address with
211211
the command `$ docker-machine ip default`.
212212

213-
| Container | Docker on Linux / Windows Pro | Docker on Windows Home |
214-
| ------------------------- | --------------------------------- | ---------------------------------------------- |
215-
| GraphQL API Documentation | `http://localhost:5433/graphiql` | `http://your_docker_machine_ip:5433/graphiql` |
216-
| GraphQL API | `http://localhost:5433/graphql` | `http://your_docker_machine_ip:5433/graphql` |
217-
| PostgreSQL Database | host: `localhost`, port: `5432` | host: `your_docker_machine_ip`, port: `5432` |
213+
| Container | Docker on Linux / Windows Pro | Docker on Windows Home |
214+
| ------------------------- | -------------------------------- | --------------------------------------------- |
215+
| GraphQL API Documentation | `http://localhost:5433/graphiql` | `http://your_docker_machine_ip:5433/graphiql` |
216+
| GraphQL API | `http://localhost:5433/graphql` | `http://your_docker_machine_ip:5433/graphql` |
217+
| PostgreSQL Database | host: `localhost`, port: `5432` | host: `your_docker_machine_ip`, port: `5432` |
218218

219219
#### Re-initialize The Database
220220

src/pages/postgraphile/running-postgraphile-in-docker.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -388,11 +388,11 @@ $ docker-compose up -d graphql
388388

389389
Each container can be accessed at the following addresses.
390390

391-
| Container | Docker on Linux / Windows Pro | Docker on Windows Home |
392-
| ------------------------- | --------------------------------- | ---------------------------------------------- |
393-
| GraphQL API Documentation | `http://localhost:5433/graphiql` | `http://your_docker_machine_ip:5433/graphiql` |
394-
| GraphQL API | `http://localhost:5433/graphql` | `http://your_docker_machine_ip:5433/graphql` |
395-
| PostgreSQL Database | host: `localhost`, port: `5432` | host: `your_docker_machine_ip`, port: `5432` |
391+
| Container | Docker on Linux / Windows Pro | Docker on Windows Home |
392+
| ------------------------- | -------------------------------- | --------------------------------------------- |
393+
| GraphQL API Documentation | `http://localhost:5433/graphiql` | `http://your_docker_machine_ip:5433/graphiql` |
394+
| GraphQL API | `http://localhost:5433/graphql` | `http://your_docker_machine_ip:5433/graphql` |
395+
| PostgreSQL Database | host: `localhost`, port: `5432` | host: `your_docker_machine_ip`, port: `5432` |
396396

397397
> Note: if you run Docker Toolbox on Windows Home, you can get your Docker
398398
> machine IP address with the command `$ docker-machine ip default`.

0 commit comments

Comments
 (0)