We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b30f68 commit bfb330cCopy full SHA for bfb330c
hbase-client/src/main/java/org/apache/hadoop/hbase/ipc/RemoteWithExtrasException.java
@@ -117,8 +117,9 @@ private IOException instantiateException(Class<? extends IOException> cls) throw
117
// if an exception defaults to meaning isServerOverloaded, we use that.
118
// otherwise, see if the remote exception value should mean setting to true.
119
HBaseServerException serverException = (HBaseServerException) ex;
120
- if (serverOverloaded && !serverException.isServerOverloaded())
121
- serverException.setServerOverloaded(true);
+ if (serverOverloaded && !serverException.isServerOverloaded()) {
+ serverException.setServerOverloaded(true);
122
+ }
123
}
124
125
return ex;
0 commit comments