ibessonov commented on code in PR #5886: URL: https://github.com/apache/ignite-3/pull/5886#discussion_r2106923881
########## modules/configuration/src/main/java/org/apache/ignite/internal/configuration/ConfigurationRegistry.java: ########## @@ -118,6 +124,12 @@ public InnerNode createRootNode(RootKey<?, ?> rootKey) { public CompletableFuture<Void> startAsync(ComponentContext componentContext) { changer.start(); + // Initialize local configuration on start so that it can be read and modified during component start. + // Distributed configuration will be initialized during the "notifyCurrentConfigurationListeners" call. + if (configurationType == ConfigurationType.LOCAL) { Review Comment: Never mind -- 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