denis-chudov commented on code in PR #6097: URL: https://github.com/apache/ignite-3/pull/6097#discussion_r2161940062
########## modules/table/src/main/java/org/apache/ignite/internal/table/distributed/TableManager.java: ########## @@ -2925,8 +2926,17 @@ private CompletableFuture<Void> stopAndDestroyTablePartitions(TableImpl table) { } private CompletableFuture<Void> stopAndDestroyTablePartition(TablePartitionId tablePartitionId, long causalityToken) { - return tablesVv - .get(causalityToken) + CompletableFuture<?> tokenFuture; + + try { + tokenFuture = tablesVv.get(causalityToken); + } catch (OutdatedTokenException e) { + // Here we need only to ensure that the token has been seen. + //TODO https://issues.apache.org/jira/browse/IGNITE-25742 Review Comment: fixed -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: notifications-unsubscr...@ignite.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org