Skip to content

Commit d78fce3

Browse files
author
Paultagoras
committed
Code review comments
1 parent 48be384 commit d78fce3

File tree

5 files changed

+6
-5
lines changed

5 files changed

+6
-5
lines changed

.github/workflows/analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ env:
3333
jobs:
3434
static:
3535
runs-on: ubuntu-latest
36-
timeout-minutes: 45
36+
timeout-minutes: 30
3737
name: Static code analysis
3838
steps:
3939
- name: Check out Git repository

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ jobs:
179179
matrix:
180180
# most recent LTS releases as well as latest stable builds
181181
# https://github.com/ClickHouse/ClickHouse/pulls?q=is%3Aopen+is%3Apr+label%3Arelease
182-
clickhouse: ["22.8", "23.3", "23.7", "latest"]
182+
clickhouse: ["23.8", "24.3", "24.6", "latest"]
183183
fail-fast: false
184184
timeout-minutes: 15
185185
name: Java client + CH ${{ matrix.clickhouse }}
@@ -298,7 +298,7 @@ jobs:
298298
needs: compile
299299
strategy:
300300
matrix:
301-
clickhouse: ["22.8", "23.3", "23.7", "latest", "cloud"]
301+
clickhouse: ["23.8", "24.3", "24.6", "latest", "cloud"]
302302
# here http, http_client and apache_http_client represent different value of http_connection_provider
303303
protocol: ["http", "http_client", "apache_http_client", "grpc"]
304304
fail-fast: false

clickhouse-client/src/test/java/com/clickhouse/client/ClickHouseNodeTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -410,7 +410,7 @@ public void testProbe() {
410410
}
411411
int port = p.getDefaultPort();
412412
if (isCloud()) {
413-
port = 8433;
413+
port = 8443;
414414
}
415415
ClickHouseNode node = getServer(ClickHouseProtocol.ANY, port);
416416
ClickHouseNode probedNode = node.probe();

clickhouse-client/src/test/java/com/clickhouse/client/ClickHouseServerForTest.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -387,6 +387,7 @@ public static boolean runQuery(String sql) {
387387
Thread.sleep(15000);
388388
} catch (InterruptedException e) {
389389
LOGGER.error("Failed to sleep", e);
390+
throw new RuntimeException(e);
390391
}
391392
} while(retries++ < 10);
392393

clickhouse-http-client/src/test/java/com/clickhouse/client/http/ClickHouseHttpClientTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -423,7 +423,7 @@ public void testLogComment() throws ClickHouseException {
423423
try {
424424
Thread.sleep(30000);
425425
} catch (InterruptedException e) {
426-
// ignore
426+
throw new RuntimeException(e);
427427
}
428428
}
429429

0 commit comments

Comments
 (0)