Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/main_and_pr_workflow.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
name: Gradle
on:
workflow_dispatch:
push:
branches: [ main ]
pull_request:
Expand Down
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -134,9 +134,9 @@ ext {
kafkaVersion = "3.5.0"
apacheCommonsLangVersion = "3.17.0"
slf4jVersion = "1.7.36"
openSearchVersion = "2.16.0"
openSearchVersion = "2.18.0"

testcontainersVersion = "1.20.3"
testcontainersVersion = "1.20.4"
}

sourceSets {
Expand Down Expand Up @@ -189,7 +189,7 @@ dependencies {

integrationTestImplementation "org.testcontainers:junit-jupiter:$testcontainersVersion"
integrationTestImplementation "org.testcontainers:kafka:$testcontainersVersion" // this is not Kafka version
integrationTestImplementation "org.opensearch:opensearch-testcontainers:2.1.1"
integrationTestImplementation "org.opensearch:opensearch-testcontainers:2.1.2"
integrationTestImplementation "org.apache.kafka:kafka-clients:$kafkaVersion:test"
integrationTestImplementation "org.apache.kafka:connect-runtime:${kafkaVersion}"
integrationTestImplementation "org.apache.kafka:connect-runtime:${kafkaVersion}:test"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ public static <T, E extends Exception> T callWithRetry(final String callName, fi
return callable.call();
} catch (final Exception e) {
if (!repeatableException.isAssignableFrom(e.getClass())) {
final var msg = String.format("Non-repeatable exception trown by %s", callName);
final var msg = String.format("Non-repeatable exception thrown by %s", callName);
LOGGER.error(msg, e);
throw new ConnectException(msg, e);
} else if (attempts < maxAttempts) {
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
io.aiven.kafka.connect.opensearch.OpensearchSinkConnector
Loading