Skip to content

Commit fb8ca03

Browse files
HDFS-17903. Remove reference to dead wiki URL (#8398). Contributed by Felix N
Reviewed-by: ZanderXu <zanderxu@apache.org> Signed-off-by: Akira Ajisaka <aajisaka@apache.org>
1 parent 6fefea0 commit fb8ca03

File tree

1 file changed

+1
-2
lines changed
  • hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/namenode/ha

1 file changed

+1
-2
lines changed

hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/namenode/ha/StandbyState.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,9 +93,8 @@ public void checkOperation(HAContext context, OperationCategory op)
9393
(op == OperationCategory.READ && context.allowStaleReads())) {
9494
return;
9595
}
96-
String faq = ". Visit https://s.apache.org/sbnn-error";
9796
String msg = "Operation category " + op + " is not supported in state "
98-
+ context.getState() + faq;
97+
+ context.getState() + ".";
9998
if (op == OperationCategory.WRITE && isObserver) {
10099
// If observer receives a write call, return active retry
101100
// exception to inform client to retry on active.

0 commit comments

Comments
 (0)