Merge pull request #487 from padloc/fix/tls-reject-unauthorized

Make sure postgres `tlsRejectUnauthorized` setting is parsed as boolean
This commit is contained in:
Martin Kleinschrodt 2022-07-01 16:53:47 +02:00 committed by GitHub
commit a312b9b177
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ export class PostgresConfig extends Config {
@ConfigParam()
tlsCAFile?: string;
@ConfigParam()
@ConfigParam("boolean")
tlsRejectUnauthorized?: boolean = true;
}