You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dubbo.apache.org by so...@apache.org on 2019/12/21 05:33:54 UTC

[dubbo] branch master updated: Fix typo: HEATBEAT_CHECK_TICK (#5513)

This is an automated email from the ASF dual-hosted git repository.

songkun pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/dubbo.git


The following commit(s) were added to refs/heads/master by this push:
     new 93f21c1  Fix typo: HEATBEAT_CHECK_TICK (#5513)
93f21c1 is described below

commit 93f21c1797991112084c352b55b00aa9063c6383
Author: LiosWong <di...@163.com>
AuthorDate: Sat Dec 21 13:33:39 2019 +0800

    Fix typo: HEATBEAT_CHECK_TICK (#5513)
---
 .../src/main/java/org/apache/dubbo/remoting/Constants.java            | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dubbo-remoting/dubbo-remoting-api/src/main/java/org/apache/dubbo/remoting/Constants.java b/dubbo-remoting/dubbo-remoting-api/src/main/java/org/apache/dubbo/remoting/Constants.java
index b974769..56e1845 100644
--- a/dubbo-remoting/dubbo-remoting-api/src/main/java/org/apache/dubbo/remoting/Constants.java
+++ b/dubbo-remoting/dubbo-remoting-api/src/main/java/org/apache/dubbo/remoting/Constants.java
@@ -52,8 +52,8 @@ public interface Constants {
     String DEFAULT_CHARSET = "UTF-8";
 
     /**
-     * Every heartbeat duration / HEATBEAT_CHECK_TICK, check if a heartbeat should be sent. Every heartbeat timeout
-     * duration / HEATBEAT_CHECK_TICK, check if a connection should be closed on server side, and if reconnect on
+     * Every heartbeat duration / HEARTBEAT_CHECK_TICK, check if a heartbeat should be sent. Every heartbeat timeout
+     * duration / HEARTBEAT_CHECK_TICK, check if a connection should be closed on server side, and if reconnect on
      * client side
      */
     int HEARTBEAT_CHECK_TICK = 3;