Merge pull request #320 from tylerlong/master

Fix sslmode typo
This commit is contained in:
Dan Sosedoff 2017-11-11 10:58:59 -06:00 committed by GitHub
commit d65f8eb0f5
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 {