You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kudu.apache.org by al...@apache.org on 2021/04/06 17:00:34 UTC

[kudu] 02/02: [java] fix log message typo in KuduTransaction::startKeepaliveHeartbeating()

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

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

commit 7c99e8178f5d3edf7cae627a2403e59903360819
Author: Alexey Serbin <al...@apache.org>
AuthorDate: Tue Apr 6 01:18:21 2021 -0700

    [java] fix log message typo in KuduTransaction::startKeepaliveHeartbeating()
    
    Change-Id: Ia35939753e55e8e307392bdcb288c27ba898e211
    Reviewed-on: http://gerrit.cloudera.org:8080/17275
    Tested-by: Kudu Jenkins
    Reviewed-by: Andrew Wong <aw...@cloudera.com>
---
 .../src/main/java/org/apache/kudu/client/KuduTransaction.java           | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/java/kudu-client/src/main/java/org/apache/kudu/client/KuduTransaction.java b/java/kudu-client/src/main/java/org/apache/kudu/client/KuduTransaction.java
index 05a5616..2e7bf41 100644
--- a/java/kudu-client/src/main/java/org/apache/kudu/client/KuduTransaction.java
+++ b/java/kudu-client/src/main/java/org/apache/kudu/client/KuduTransaction.java
@@ -600,7 +600,7 @@ public class KuduTransaction implements AutoCloseable {
   private void startKeepaliveHeartbeating() {
     if (keepaliveEnabled) {
       LOG.debug("starting keepalive heartbeating with period {} ms (txn ID {})",
-          txnId, keepalivePeriodForTimeout(keepaliveMillis));
+          keepalivePeriodForTimeout(keepaliveMillis), txnId);
       doStartKeepaliveHeartbeating();
     } else {
       LOG.debug("keepalive heartbeating disabled for this handle (txn ID {})", txnId);