Skip to content

Commit

Permalink
app: Fix command storage update-database-prefix #TASK-4389
Browse files Browse the repository at this point in the history
  • Loading branch information
j-coll committed Feb 9, 2024
1 parent 96e35be commit f2fe884
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ private void updateDatabasePrefix() throws Exception {

final DataStore newDataStore;
logger.info("------");
logger.info("Project " + project.getFqn());
logger.info("Project '" + project.getFqn() + "'");
if (currentDataStore == null) {
newDataStore = defaultDataStore;
logger.info("Old DBName: null");
Expand All @@ -207,7 +207,7 @@ private void updateDatabasePrefix() throws Exception {
}
logger.info("New DBName: " + newDataStore.getDbName());

catalogManager.getProjectManager().setDatastoreVariant(project.getUuid(), newDataStore, token);
catalogManager.getProjectManager().setDatastoreVariant(project.getFqn(), newDataStore, token);
}
}
}
Expand Down

0 comments on commit f2fe884

Please sign in to comment.