[
https://issues.apache.org/jira/browse/IGNITE-22279?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Vladislav Pyatkov updated IGNITE-22279:
---------------------------------------
Description:
https://github.com/apache/ignite-3/pull/3704
Motivation
{code}
if (retryExecutor != null && matchAny(unwrapCause(errResp.throwable()),
ACQUIRE_LOCK_ERR, REPLICA_MISS_ERR)) {
retryExecutor.schedule(
// Need to resubmit again to pool which is
valid for synchronous IO execution.
() ->
partitionOperationsExecutor.execute(() ->
res.completeExceptionally(errResp.throwable())),
RETRY_TIMEOUT_MILLIS, MILLISECONDS);
}
{code}
was:https://github.com/apache/ignite-3/pull/3704
> Missed comments in PR IGNITE-22130
> ----------------------------------
>
> Key: IGNITE-22279
> URL: https://issues.apache.org/jira/browse/IGNITE-22279
> Project: Ignite
> Issue Type: Bug
> Reporter: Vladislav Pyatkov
> Priority: Major
> Labels: ignite-3
>
> https://github.com/apache/ignite-3/pull/3704
> Motivation
> {code}
> if (retryExecutor != null && matchAny(unwrapCause(errResp.throwable()),
> ACQUIRE_LOCK_ERR, REPLICA_MISS_ERR)) {
> retryExecutor.schedule(
> // Need to resubmit again to pool which
> is valid for synchronous IO execution.
> () ->
> partitionOperationsExecutor.execute(() ->
> res.completeExceptionally(errResp.throwable())),
> RETRY_TIMEOUT_MILLIS, MILLISECONDS);
> }
> {code}
--
This message was sent by Atlassian Jira
(v8.20.10#820010)