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 e01eadf commit 5892cebCopy full SHA for 5892ceb
client-v2/src/test/java/com/clickhouse/client/insert/InsertTests.java
@@ -289,7 +289,7 @@ public void insertRawDataAsync(boolean async) throws Exception {
289
List<GenericRecord> records = client.queryAll("SELECT * FROM " + tableName);
290
assertEquals(records.size(), 1000);
291
assertTrue(Thread.currentThread().getName()
292
- .startsWith(async ? "pool-1-thread-" : "main"), "Threads starts with " + Thread.currentThread().getName());
+ .startsWith(async ? "pool-" : "main"), "Threads starts with " + Thread.currentThread().getName());
293
})
294
.join(); // wait operation complete. only for tests
295
}
0 commit comments