mirror of https://github.com/tikv/client-java.git
remove log for EpochNotMatch (#307)
Signed-off-by: marsishandsome <marsishandsome@gmail.com>
This commit is contained in:
parent
9dc277141b
commit
e1c27941b0
|
|
@ -120,9 +120,7 @@ public class RegionErrorHandler<RespT> implements ErrorHandler<RespT> {
|
|||
return false;
|
||||
} else if (error.hasEpochNotMatch()) {
|
||||
logger.warn(
|
||||
String.format(
|
||||
"tikv reports `EpochNotMatch` retry later, region: %s, EpochNotMatch: %s",
|
||||
recv.getRegion(), error.getEpochNotMatch()));
|
||||
String.format("tikv reports `EpochNotMatch` retry later, region: %s", recv.getRegion()));
|
||||
return onRegionEpochNotMatch(backOffer, error.getEpochNotMatch().getCurrentRegionsList());
|
||||
} else if (error.hasServerIsBusy()) {
|
||||
// this error is reported from kv:
|
||||
|
|
|
|||
Loading…
Reference in New Issue