File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
src/test/java/org/testcontainers/junit/questdb Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff 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}
Original file line number Diff line number Diff 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 )
You can’t perform that action at this time.
0 commit comments