Skip to content

Commit f3902b9

Browse files
committed
experiments
1 parent 95bc11a commit f3902b9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

query/src/test/java/tech/ydb/query/impl/ResourcePoolTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,8 @@ private Status selectWithPool(String poolName) {
9595

9696
private Status createResourcePool(String poolName) {
9797
String createPool = "CREATE RESOURCE POOL " + poolName + " WITH ("
98-
+ "CONCURRENT_QUERY_LIMIT=10,"
99-
+ "QUEUE_SIZE=1000,"
98+
+ "CONCURRENT_QUERY_LIMIT=\"-1\","
99+
+ "QUEUE_SIZE=\"-1\","
100100
+ "DATABASE_LOAD_CPU_THRESHOLD=20);";
101101
return retryCtx.supplyResult(s -> s.createQuery(createPool, TxMode.NONE).execute()).join().getStatus();
102102
}

0 commit comments

Comments
 (0)