xtern commented on code in PR #4690: URL: https://github.com/apache/ignite-3/pull/4690#discussion_r1841684758
########## modules/transactions/src/main/java/org/apache/ignite/internal/tx/impl/TxManagerImpl.java: ########## @@ -192,6 +196,11 @@ public class TxManagerImpl implements TxManager, NetworkMessageHandler { private final ReplicaService replicaService; + /** Registry of locally started active transactions. */ + private final Map<UUID, InternalTransaction> transactions = new ConcurrentHashMap<>(); + + private final TransactionsViewProvider txSystemViewProvider = new TransactionsViewProvider(transactions); Review Comment: Thanks, the PR was reworked so that the system view now uses existing collections. But now provider requires data that is become available only after component start -- 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