Skip to content

Commit

Permalink
ZOOKEEPER-4494: Fix error message format
Browse files Browse the repository at this point in the history
cc maoling eolivelli

Author: tison <wander4096@gmail.com>

Reviewers: maoling <maoling@apache.org>

Closes apache#1838 from tisonkun/patch-2
  • Loading branch information
tisonkun authored and maoling committed Mar 28, 2022
1 parent 7c86433 commit a160981
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ public static TxnLogEntry deserializeTxn(byte[] txnBytes) throws IOException {
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 {
Expand Down

0 comments on commit a160981

Please sign in to comment.