Skip to content
Snippets Groups Projects
Commit 83c2c273 authored by brinn's avatar brinn
Browse files

fix: dead lock when using the new sample browsing code

SVN: 12236
parent e0071574
No related branches found
No related tags found
No related merge requests found
......@@ -38,6 +38,8 @@ public class DatabaseConfigurationContext implements DisposableBean
private static final class BasicDataSourceFactory implements IDataSourceFactory
{
private final int MAX_ACTIVE_NO_LIMIT = -1;
//
// IDataSourceFactory
//
......@@ -52,6 +54,7 @@ public class DatabaseConfigurationContext implements DisposableBean
dataSource.setPassword(password);
dataSource.setMinIdle(0);
dataSource.setMaxIdle(0);
dataSource.setMaxActive(MAX_ACTIVE_NO_LIMIT);
return dataSource;
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment