Skip to content

Commit bcfca96

Browse files
committed
experiments
1 parent 95bc11a commit bcfca96

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,9 +95,9 @@ 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,"
98+
+ "CONCURRENT_QUERY_LIMIT=\"-1\","
9999
+ "QUEUE_SIZE=1000,"
100-
+ "DATABASE_LOAD_CPU_THRESHOLD=20);";
100+
+ "DATABASE_LOAD_CPU_THRESHOLD=\"-1\");";
101101
return retryCtx.supplyResult(s -> s.createQuery(createPool, TxMode.NONE).execute()).join().getStatus();
102102
}
103103

0 commit comments

Comments
 (0)