Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -93,9 +93,8 @@ public void checkOperation(HAContext context, OperationCategory op)
(op == OperationCategory.READ && context.allowStaleReads())) {
return;
}
String faq = ". Visit https://s.apache.org/sbnn-error";
String msg = "Operation category " + op + " is not supported in state "
+ context.getState() + faq;
+ context.getState() + ".";
if (op == OperationCategory.WRITE && isObserver) {
// If observer receives a write call, return active retry
// exception to inform client to retry on active.
Expand Down
Loading