Browse Source

ZOOKEEPER-4494: Fix error message format

cc maoling eolivelli

Author: tison <wander4096@gmail.com>

Reviewers: maoling <maoling@apache.org>

Closes #1838 from tisonkun/patch-2
tison 3 năm trước cách đây
mục cha
commit
a160981e37

+ 1 - 1
zookeeper-server/src/main/java/org/apache/zookeeper/server/util/SerializeUtils.java

@@ -101,7 +101,7 @@ public class SerializeUtils {
             txn = new MultiTxn();
             break;
         default:
-            throw new IOException("Unsupported Txn with type=%d" + hdr.getType());
+            throw new IOException("Unsupported Txn with type=" + hdr.getType());
         }
         if (txn != null) {
             try {