From e452628cae0dcbe1fb14135c2bfa02f6a76ba0cc Mon Sep 17 00:00:00 2001 From: Patrick Figel Date: Tue, 19 Sep 2017 16:17:15 +0200 Subject: [PATCH] Use single quotes for pg user password (#398) Double quotes are not syntactically correct here. --- Running-Mastodon/PgBouncer-guide.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Running-Mastodon/PgBouncer-guide.md b/Running-Mastodon/PgBouncer-guide.md index e44237ff..e45ed0bd 100644 --- a/Running-Mastodon/PgBouncer-guide.md +++ b/Running-Mastodon/PgBouncer-guide.md @@ -36,7 +36,7 @@ Here's how you might reset the password: Then: - ALTER USER "mastodon" WITH PASSWORD "password"; + ALTER USER "mastodon" WITH PASSWORD 'password'; Then `\q` to quit.