Denis Chudov created IGNITE-24611: ------------------------------------- Summary: Get rid of difference between meta storage invoke and multi invoke Key: IGNITE-24611 URL: https://issues.apache.org/jira/browse/IGNITE-24611 Project: Ignite Issue Type: Improvement Reporter: Denis Chudov
In DataNodesManager#msInvokeWithRetry: {code:java} return metaStorageManager.invoke(metaStorageOperation.operation()){code} metaStorageOperation.operation() is actually Iif. If I replace it with {code:java} return metaStorageManager.invoke(metaStorageOperation.condition(), metaStorageOperation.operations(), List.of()){code} some tests become failing. It's not obvious what difference is with this calls. Both variants should work. -- This message was sent by Atlassian Jira (v8.20.10#820010)