We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 95bc11a commit 48b990eCopy full SHA for 48b990e
query/src/test/java/tech/ydb/query/impl/ResourcePoolTest.java
@@ -95,9 +95,9 @@ private Status selectWithPool(String poolName) {
95
96
private Status createResourcePool(String poolName) {
97
String createPool = "CREATE RESOURCE POOL " + poolName + " WITH ("
98
- + "CONCURRENT_QUERY_LIMIT=10,"
99
- + "QUEUE_SIZE=1000,"
100
- + "DATABASE_LOAD_CPU_THRESHOLD=20);";
+ + "CONCURRENT_QUERY_LIMIT=-1,"
+ + "QUEUE_SIZE=-1,"
+ + "DATABASE_LOAD_CPU_THRESHOLD=-1);";
101
return retryCtx.supplyResult(s -> s.createQuery(createPool, TxMode.NONE).execute()).join().getStatus();
102
}
103
0 commit comments