Skip to content

Commit

Permalink
Adjusted min connections to 1 back again
Browse files Browse the repository at this point in the history
  • Loading branch information
silvae86 committed Nov 17, 2017
1 parent c8795bb commit b25205a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/kb/db.js
Expand Up @@ -645,7 +645,7 @@ DbConnection.prototype.create = function (callback)
// Required
url: "jdbc:virtuoso://" + self.host + ":" + self.port_isql + "/UID=" + self.username + "/PWD=" + self.password + "/PWDTYPE=cleartext" + "/CHARSET=UTF-8",
drivername: "virtuoso.jdbc4.Driver",
minpoolsize: 0,
minpoolsize: 1,
maxpoolsize: self.maxSimultaneousConnections,
maxidle: 10000,
properties: {}
Expand Down

0 comments on commit b25205a

Please sign in to comment.