Skip to content

Commit

Permalink
fixed an issue with aws ssl getting stuck with open conecections
Browse files Browse the repository at this point in the history
  • Loading branch information
spacedevin committed Feb 10, 2016
1 parent d993cd7 commit eb2b113
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Db.php
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ public function connect($args = null) {
$this->_driver = $db->getAttribute(\PDO::ATTR_DRIVER_NAME);

$db->setAttribute(\PDO::ATTR_ERRMODE, \PDO::ERRMODE_EXCEPTION);
$db->setAttribute(\PDO::ATTR_EMULATE_PREPARES, false);
$db->setAttribute(\PDO::ATTR_EMULATE_PREPARES, $args['sslca'] ? true : false);

$this->db($db);

Expand Down

0 comments on commit eb2b113

Please sign in to comment.