This is an automated email from the ASF dual-hosted git repository.

tkalkirill pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/ignite-3.git


The following commit(s) were added to refs/heads/main by this push:
     new e08730e3327 IGNITE-24504 Log cluster configuration (#5280)
e08730e3327 is described below

commit e08730e3327539e2d1682a8d58f23ccc9378edbe
Author: Kirill Tkalenko <[email protected]>
AuthorDate: Mon Feb 24 17:15:23 2025 +0300

    IGNITE-24504 Log cluster configuration (#5280)
---
 .../runner/src/main/java/org/apache/ignite/internal/app/IgniteImpl.java | 2 ++
 1 file changed, 2 insertions(+)

diff --git 
a/modules/runner/src/main/java/org/apache/ignite/internal/app/IgniteImpl.java 
b/modules/runner/src/main/java/org/apache/ignite/internal/app/IgniteImpl.java
index c8396a0ef16..44a1802f9b9 100644
--- 
a/modules/runner/src/main/java/org/apache/ignite/internal/app/IgniteImpl.java
+++ 
b/modules/runner/src/main/java/org/apache/ignite/internal/app/IgniteImpl.java
@@ -1499,6 +1499,8 @@ public class IgniteImpl implements Ignite {
                 .thenComposeAsync(v -> {
                     LOG.info("Components started, performing recovery");
 
+                    LOG.info("Cluster configuration: {}", 
convertToHoconString(clusterCfgMgr.configurationRegistry()));
+
                     return recoverComponentsStateOnStart(joinExecutor, 
lifecycleManager.allComponentsStartFuture());
                 }, joinExecutor)
                 .thenComposeAsync(v -> 
clusterCfgMgr.configurationRegistry().onDefaultsPersisted(), joinExecutor)

Reply via email to