Skip to content

Commit a3e796a

Browse files
committed
Add TabletReplicationEraMismatch code to the list of retriable errors
commit_hash:9c2397eb157e2aa3eea3d19beafd5fbe7bb278d0
1 parent 2653d2c commit a3e796a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

yt/yt/client/api/rpc_proxy/helpers.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1837,7 +1837,8 @@ bool IsDynamicTableRetriableError(const TError& error)
18371837
error.FindMatching(NTabletClient::EErrorCode::ChunkIsNotPreloaded) ||
18381838
error.FindMatching(NTabletClient::EErrorCode::NoInSyncReplicas) ||
18391839
error.FindMatching(NTabletClient::EErrorCode::TabletNotMounted) ||
1840-
error.FindMatching(NTabletClient::EErrorCode::NoSuchTablet);
1840+
error.FindMatching(NTabletClient::EErrorCode::NoSuchTablet) ||
1841+
error.FindMatching(NTabletClient::EErrorCode::TabletReplicationEraMismatch);
18411842
}
18421843

18431844
bool IsRetriableError(const TError& error, bool retryProxyBanned, bool retrySequoiaErrorsOnly)

0 commit comments

Comments
 (0)