This is an automated email from the ASF dual-hosted git repository. jsinovassinnaik pushed a commit to branch UNOMI-867-add-missing-key-on-refresh in repository https://gitbox.apache.org/repos/asf/unomi.git
commit a2ee481f51cebff4a5ebcfc3127deaa7c9e482d2 Author: jsinovassin <[email protected]> AuthorDate: Mon Dec 9 10:54:05 2024 +0100 UNOMI-867: add unique name on refresh --- .../java/org/apache/unomi/shell/migration/utils/MigrationUtils.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/shell-commands/src/main/java/org/apache/unomi/shell/migration/utils/MigrationUtils.java b/tools/shell-commands/src/main/java/org/apache/unomi/shell/migration/utils/MigrationUtils.java index a92898681..67d7d6687 100644 --- a/tools/shell-commands/src/main/java/org/apache/unomi/shell/migration/utils/MigrationUtils.java +++ b/tools/shell-commands/src/main/java/org/apache/unomi/shell/migration/utils/MigrationUtils.java @@ -239,7 +239,7 @@ public class MigrationUtils { } }); - migrationContext.performMigrationStep("Reindex step for: " + indexName + " (refresh at the end)", () -> { + migrationContext.performMigrationStep(migrationUniqueName + "Reindex step for: " + indexName + " (refresh at the end)", () -> { // Do a refresh HttpUtils.executePostRequest(httpClient, esAddress + "/" + indexName + "/_refresh", null, null);
