From 1db8a2a3cb6adde2fd07fee0009f03d8a5079991 Mon Sep 17 00:00:00 2001 From: Josh Heyer <63653723+josh-heyer@users.noreply.github.com> Date: Fri, 18 Feb 2022 10:58:01 -0700 Subject: [PATCH] remove cruft from my last commit ...i need more coffee --- .../barman/single-server-streaming/step01-db-setup.mdx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/advocacy_docs/supported-open-source/barman/single-server-streaming/step01-db-setup.mdx b/advocacy_docs/supported-open-source/barman/single-server-streaming/step01-db-setup.mdx index 7ecb4791c21..6ffd5dc14ef 100644 --- a/advocacy_docs/supported-open-source/barman/single-server-streaming/step01-db-setup.mdx +++ b/advocacy_docs/supported-open-source/barman/single-server-streaming/step01-db-setup.mdx @@ -114,7 +114,7 @@ psql -d pagila The relevant configuration parameter is [`listen_addresses`](https://www.postgresql.org/docs/current/runtime-config-connection.html#GUC-LISTEN-ADDRESSES): -```shell +```sql show listen_addresses; __OUTPUT__ listen_addresses @@ -125,8 +125,8 @@ __OUTPUT__ The value for this server is `*` - which allows connections from anything. This doesn't need to be changed. If the value were to be empty, `localhost`, or a list of hosts or addresses that don't include our database server, we'd need to add its hostname (`backup`) to the list, or change it to the wildcard. -```shell -pagila=# ALTER SYSTEM SET listen_addresses TO "*"; +```sql +ALTER SYSTEM SET listen_addresses TO "*"; __OUTPUT__ ALTER SYSTEM ```