Skip to content

Commit ef4aa7e

Browse files
authored
Update org.questdb:questdb version to 9.0.0 (#10486)
1 parent 5b321b0 commit ef4aa7e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

modules/questdb/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ dependencies {
77
testRuntimeOnly 'org.postgresql:postgresql:42.7.7'
88
testImplementation project(':jdbc-test')
99
testImplementation 'org.assertj:assertj-core:3.27.3'
10-
testImplementation 'org.questdb:questdb:7.3.9'
10+
testImplementation 'org.questdb:questdb:9.0.0'
1111
testImplementation 'org.awaitility:awaitility:4.3.0'
1212
testImplementation 'org.apache.httpcomponents:httpclient:4.5.14'
1313
}

modules/questdb/src/test/java/org/testcontainers/junit/questdb/SimpleQuestDBTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ public void testRest() throws IOException {
5757
}
5858

5959
private static void populateByInfluxLineProtocol(QuestDBContainer questdb, int rowCount) {
60-
try (Sender sender = Sender.builder().address(questdb.getIlpUrl()).build()) {
60+
try (Sender sender = Sender.builder(Sender.Transport.TCP).address(questdb.getIlpUrl()).build()) {
6161
for (int i = 0; i < rowCount; i++) {
6262
sender
6363
.table(TABLE_NAME)

0 commit comments

Comments
 (0)