Skip to content

Commit

Permalink
Update zookeeper to 3.9.1
Browse files Browse the repository at this point in the history
Excluding logback-classic is important because it enables all logs to be reported on DEBUG level,
spaming logs and making tests time out.
  • Loading branch information
wendigo committed Oct 20, 2023
1 parent 586f656 commit f965287
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -618,6 +618,12 @@
<version>1.16.0</version>
</dependency>

<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.11.0</version>
</dependency>

<dependency>
<groupId>dev.failsafe</groupId>
<artifactId>failsafe</artifactId>
Expand Down Expand Up @@ -1824,8 +1830,12 @@
<dependency>
<groupId>org.apache.zookeeper</groupId>
<artifactId>zookeeper</artifactId>
<version>3.6.3</version>
<version>3.9.1</version>
<exclusions>
<exclusion>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
</exclusion>
<exclusion>
<groupId>commons-cli</groupId>
<artifactId>commons-cli</artifactId>
Expand Down

0 comments on commit f965287

Please sign in to comment.