Skip to content

Commit

Permalink
Release 1.6.11 (#365)
Browse files Browse the repository at this point in the history
* release version

* modify ut

---------

Co-authored-by: 三樵 <[email protected]>
  • Loading branch information
chuailiwu and 三樵 authored Dec 17, 2024
1 parent 8bcdae6 commit 9f388ab
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion 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.alipay.sofa</groupId>
<artifactId>bolt</artifactId>
<version>1.6.11-SNAPSHOT</version>
<version>1.6.11</version>
<packaging>jar</packaging>

<name>${project.groupId}:${project.artifactId}</name>
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 9f388ab

Please sign in to comment.