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 ed0e695 commit eed4122Copy full SHA for eed4122
jdbc/src/main/java/tech/ydb/jdbc/context/YdbContext.java
@@ -219,6 +219,7 @@ public void register() {
219
int newSize = maxSize + SESSION_POOL_RESIZE_STEP;
220
if (maxSize == tableClient.sessionPoolStats().getMaxSize()) {
221
tableClient.updatePoolMaxSize(newSize);
222
+ queryClient.updatePoolMaxSize(newSize);
223
}
224
225
@@ -231,6 +232,7 @@ public void deregister() {
231
232
int newSize = maxSize - SESSION_POOL_RESIZE_STEP;
233
234
235
236
237
238
0 commit comments