1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-25 00:07:47 +01:00

fix: default db SSL to undefined

This commit is contained in:
Ivar Conradi Østhus 2021-04-22 10:44:04 +02:00
parent a6eb64e5da
commit cc1b328b07
No known key found for this signature in database
GPG Key ID: 31AC596886B0BD09

View File

@ -48,7 +48,7 @@ const defaultDbOptions: IDBOption = {
ssl:
process.env.DATABASE_SSL != null
? JSON.parse(process.env.DATABASE_SSL)
: false,
: undefined,
driver: 'postgres',
version: process.env.DATABASE_VERSION,
pool: {