Skip to content

Commit 5ee1bf4

Browse files
HDDS-14046. ReconStorageContainerManagerFacade is not initialized properly after upgrade (apache#9407).
1 parent 173fd61 commit 5ee1bf4

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

hadoop-ozone/recon/src/main/java/org/apache/hadoop/ozone/recon/ReconServer.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -160,11 +160,6 @@ public Void call() throws Exception {
160160
LOG.info("Initializing support of Recon Features...");
161161
FeatureProvider.initFeatureSupport(configuration);
162162

163-
LOG.debug("Now starting all services of Recon...");
164-
// Start all services
165-
start();
166-
isStarted = true;
167-
168163
LOG.info("Finalizing Layout Features.");
169164
// Handle Recon Schema Versioning
170165
ReconSchemaVersionTableManager versionTableManager =
@@ -178,6 +173,11 @@ public Void call() throws Exception {
178173

179174
LOG.info("Recon schema versioning completed.");
180175

176+
LOG.debug("Now starting all services of Recon...");
177+
// Start all services
178+
start();
179+
isStarted = true;
180+
181181
LOG.info("Recon server initialized successfully!");
182182
} catch (Exception e) {
183183
LOG.error("Error during initializing Recon server.", e);

0 commit comments

Comments
 (0)