Skip to content

Commit

Permalink
feat(postgres-driver): support CUBEJS_DB_SSL option
Browse files Browse the repository at this point in the history
  • Loading branch information
paveltiunov committed May 27, 2019
1 parent fe3fa6d commit 67a767e
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions packages/cubejs-postgres-driver/driver/PostgresDriver.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ class PostgresDriver extends BaseDriver {
port: process.env.CUBEJS_DB_PORT,
user: process.env.CUBEJS_DB_USER,
password: process.env.CUBEJS_DB_PASS,
ssl: process.env.CUBEJS_DB_SSL ? {} : undefined,
...config
});
const self = this;
Expand Down

0 comments on commit 67a767e

Please sign in to comment.