Skip to content
Snippets Groups Projects
Commit cabc13a7 authored by akwizgran's avatar akwizgran
Browse files

Increased queue capacity of database executor.

parent f8aaa609
No related branches found
No related tags found
No related merge requests found
......@@ -23,7 +23,7 @@ public class DatabaseModule extends AbstractModule {
* The maximum number of database tasks that can be queued for execution
* before submitting another task will block.
*/
private static final int MAX_QUEUED_DB_TASKS = 10;
private static final int MAX_QUEUED_DB_TASKS = 1000;
/** The minimum number of database threads to keep in the pool. */
private static final int MIN_DB_THREADS = 1;
......
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