From 926d0b48f0d829f679d3d51e162fa494e577ea66 Mon Sep 17 00:00:00 2001 From: Ayush Saxena Date: Fri, 27 Dec 2019 18:32:15 +0530 Subject: [PATCH] HDFS-15081. Typo in RetryCache#waitForCompletion annotation. Contributed by Fei Hui. --- .../src/main/java/org/apache/hadoop/ipc/RetryCache.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/ipc/RetryCache.java b/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/ipc/RetryCache.java index 6f6ceb5a6c..4bde261eab 100644 --- a/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/ipc/RetryCache.java +++ b/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/ipc/RetryCache.java @@ -290,7 +290,7 @@ public class RetryCache { Thread.currentThread().interrupt(); } } - // Previous request has failed, the expectation is is that it will be + // Previous request has failed, the expectation is that it will be // retried again. if (mapEntry.state != CacheEntry.SUCCESS) { mapEntry.state = CacheEntry.INPROGRESS;