Skip to content

Commit

Permalink
1.6.18.B
Browse files Browse the repository at this point in the history
  • Loading branch information
spnettec committed Mar 31, 2024
1 parent 048cb72 commit 8ae11c8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.github.heyoulin</groupId>
<artifactId>sofa-bolt</artifactId>
<version>1.6.17.B</version>
<version>1.6.18.B</version>
<packaging>jar</packaging>

<name>${project.groupId}:${project.artifactId}</name>
Expand Down Expand Up @@ -72,7 +72,7 @@
<java.version>11</java.version>
<junit.version>4.13.2</junit.version>
<license.maven.plugin>4.1</license.maven.plugin>
<log4j2.version>2.23.0</log4j2.version>
<log4j2.version>2.23.1</log4j2.version>
<logback.version>1.5.3</logback.version>
<maven.assembly.plugin>3.4.2</maven.assembly.plugin>
<maven.compiler.plugin>3.5.1</maven.compiler.plugin>
Expand All @@ -81,7 +81,7 @@
<maven.jar.plugin>3.3.0</maven.jar.plugin>
<maven.source.plugin>3.2.1</maven.source.plugin>
<maven.surefire.plugin>2.22.2</maven.surefire.plugin>
<netty.version>4.1.107.Final</netty.version>
<netty.version>4.1.108.Final</netty.version>

<project.encoding>UTF-8</project.encoding>
<slf4j.version>2.0.12</slf4j.version>
Expand Down Expand Up @@ -304,7 +304,7 @@
<includes>
<include>**/*Test.java</include>
</includes>
<forkCount>0</forkCount>
<forkCount>1</forkCount>
<reuseForks>false</reuseForks>
</configuration>
</plugin>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ public void testRuntimeCloseAndEnableHeartbeat() throws InterruptedException {
heartBeatProcessor.reset();
Thread.sleep(1500);
logger.warn("after disable: " + heartBeatProcessor.getHeartBeatTimes());
Assert.assertTrue(heartBeatProcessor.getHeartBeatTimes() == 0);
Assert.assertEquals(0, heartBeatProcessor.getHeartBeatTimes());

client.enableConnHeartbeat(addr);
heartBeatProcessor.reset();
Expand Down

0 comments on commit 8ae11c8

Please sign in to comment.