Skip to content

Commit b2eac3b

Browse files
authored
Update database URI scheme from postgres to postgresql
1 parent 41d9f26 commit b2eac3b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

product_docs/docs/pem/10/installing/ha/user_settings.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,11 @@ Add the following line, replacing `<password>` with the password of the `pem_use
4545
- If you are using a single endpoint to route traffic to the primary PEM backend instance, then `<host-ip>` and `<host-port>` should be the IP address and port of that endpoint.
4646

4747
```python
48-
CONFIG_DATABASE_URI="postgres://pem_user_settings:<password>@<host-ip>:<host-port>/pem_user_settings"
48+
CONFIG_DATABASE_URI="postgresql://pem_user_settings:<password>@<host-ip>:<host-port>/pem_user_settings"
4949
```
5050

5151
- If you are using multi-host connection strings to route traffic to the PEM primary, you may use the following format, specifying the details of each PEM backend.
5252

5353
```python
54-
CONFIG_DATABASE_URI="postgres://pem_user_settings:<password>@<host-1-ip>:<host-1-port>,<host-2-ip>:<host-2-port>,<host-3-ip>:<host-3-port>/pem_user_settings"
55-
```
54+
CONFIG_DATABASE_URI="postgresql://pem_user_settings:<password>@<host-1-ip>:<host-1-port>,<host-2-ip>:<host-2-port>,<host-3-ip>:<host-3-port>/pem_user_settings"
55+
```

0 commit comments

Comments
 (0)