From cae279610b1559371a7f04606353d8369b50969b Mon Sep 17 00:00:00 2001 From: Chen Liang Date: Fri, 14 Dec 2018 13:06:38 -0800 Subject: [PATCH] HDFS-14138. [SBN read] Description errors in the comparison logic of transaction ID. Contributed by xiangheng. --- .../src/main/java/org/apache/hadoop/ipc/Server.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/ipc/Server.java b/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/ipc/Server.java index bc1a62d7e4d..bab289378b3 100644 --- a/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/ipc/Server.java +++ b/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/ipc/Server.java @@ -2784,7 +2784,7 @@ public abstract class Server { call.getClientStateId() > alignmentContext.getLastSeenStateId()) { /* * The call processing should be postponed until the client call's - * state id is aligned (>=) with the server state id. + * state id is aligned (<=) with the server state id. * NOTE: * Inserting the call back to the queue can change the order of call