Skip to content

Commit

Permalink
Fix symds driver wrapper connection to non-default datasource
Browse files Browse the repository at this point in the history
  • Loading branch information
mmichalek committed Mar 28, 2018
1 parent a07c5e9 commit 542e58f
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -72,7 +72,7 @@ public Connection connect(String url, Properties info) throws SQLException {

String realUrl = getRealUrl(url);

Connection connection = DriverManager.getConnection(realUrl);
Connection connection = DriverManager.getConnection(realUrl, info);

String engineName = MDC.get("engineName");
TypedProperties engineProperties = null;
Expand Down

0 comments on commit 542e58f

Please sign in to comment.