Throw DNRIOE when connection or rpc client is closed

Signed-off-by: Andrew Purtell <apurtell@apache.org>
This commit is contained in:
xcang 2019-01-15 17:31:51 -08:00 committed by Andrew Purtell
parent 0546b77a31
commit 3a11028cdf
No known key found for this signature in database
GPG Key ID: 8597754DD5365CCD
1 changed files with 2 additions and 2 deletions

View File

@ -17,13 +17,13 @@
*/ */
package org.apache.hadoop.hbase.ipc; package org.apache.hadoop.hbase.ipc;
import org.apache.hadoop.hbase.DoNotRetryIOException;
import org.apache.hadoop.hbase.classification.InterfaceAudience; import org.apache.hadoop.hbase.classification.InterfaceAudience;
import org.apache.hadoop.hbase.classification.InterfaceStability; import org.apache.hadoop.hbase.classification.InterfaceStability;
import org.apache.hadoop.hbase.HBaseIOException;
@InterfaceAudience.Public @InterfaceAudience.Public
@InterfaceStability.Evolving @InterfaceStability.Evolving
public class StoppedRpcClientException extends HBaseIOException { public class StoppedRpcClientException extends DoNotRetryIOException {
public StoppedRpcClientException() { public StoppedRpcClientException() {
super(); super();
} }