Skip to content

Commit

Permalink
fix(mssql): set encrypt as default false for dialect options (#9588)
Browse files Browse the repository at this point in the history
  • Loading branch information
mirkojotic authored and sushantdhiman committed Jun 24, 2018
1 parent abf4c73 commit bb12f8d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/dialects/mssql/connection-manager.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,8 @@ class ConnectionManager extends AbstractConnectionManager {
server: config.host,
options: {
port: config.port,
database: config.database
database: config.database,
encrypt: false
}
};

Expand Down

0 comments on commit bb12f8d

Please sign in to comment.