From e3bb3a4efb5ff226900314fb6d78955eb4f7d954 Mon Sep 17 00:00:00 2001 From: Steven Samuel Cole Date: Thu, 12 May 2016 23:22:41 +0200 Subject: [PATCH] fix PostgreSQL sample code The current sample configuration line fails with `Error initializing backend of type postgresql: failed to check for native upsert: pq: unsupported sslmode "disabled"; only "require" (default), "verify-full", "verify-ca", and "disable" supported`. --- website/source/docs/config/index.html.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/source/docs/config/index.html.md b/website/source/docs/config/index.html.md index c42860555..a67c38517 100644 --- a/website/source/docs/config/index.html.md +++ b/website/source/docs/config/index.html.md @@ -490,7 +490,7 @@ The PostgreSQL backend has the following options: Examples: - * postgres://username:password@localhost:5432/database?sslmode=disabled + * postgres://username:password@localhost:5432/database?sslmode=disable * postgres://username:password@localhost:5432/database?sslmode=verify-full