Skip to content

Commit

Permalink
[SNOW-934984] Update Avro version for security vulnerability (snowfla…
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-rcheng authored and khsoneji committed Dec 6, 2023
1 parent 76ecc7c commit 8dccd57
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion pom_confluent.xml
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,7 @@
<dependency>
<groupId>org.apache.avro</groupId>
<artifactId>avro</artifactId>
<version>1.11.1</version>
<version>1.11.3</version>
<exclusions>
<exclusion>
<groupId>com.fasterxml.jackson.core</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -214,8 +214,8 @@ private void testIngestTombstoneRunner(
this.behavior == SnowflakeSinkConnectorConfig.BehaviorOnNullValues.DEFAULT
? sinkRecords.size()
: 1;
TestUtils.assertWithRetry(() -> TestUtils.tableSize(table) == expectedOffset, 10, 5);
TestUtils.assertWithRetry(() -> TestUtils.tableSize(table) == expectedOffset, 10, 20);
TestUtils.assertWithRetry(
() -> service.getOffset(new TopicPartition(topic, partition)) == expectedOffset, 10, 5);
() -> service.getOffset(new TopicPartition(topic, partition)) == expectedOffset, 10, 20);
}
}
4 changes: 2 additions & 2 deletions test/perf_test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
<dependency>
<groupId>org.apache.avro</groupId>
<artifactId>avro</artifactId>
<version>1.11.1</version>
<version>1.11.3</version>
</dependency>
</dependencies>

Expand All @@ -63,7 +63,7 @@
<plugin>
<groupId>org.apache.avro</groupId>
<artifactId>avro-maven-plugin</artifactId>
<version>1.11.1</version>
<version>1.11.3</version>
<executions>
<execution>
<phase>generate-sources</phase>
Expand Down

0 comments on commit 8dccd57

Please sign in to comment.