Fix sslmode typo

https://www.postgresql.org/docs/9.1/static/libpq-ssl.html
This commit is contained in:
Tyler Long 2017-11-11 08:12:27 -06:00 committed by GitHub
parent 69b89a0c2a
commit 86acd842b0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -55,7 +55,7 @@ func readServerConfig(path string) (Bookmark, error) {
}
// List of all supported by portgres modes
modes := []string{"disable", "allow", "prefer", "required", "verify-ca", "verify-full"}
modes := []string{"disable", "allow", "prefer", "require", "verify-ca", "verify-full"}
valid := false
for _, mode := range modes {