This is an automated email from the ASF dual-hosted git repository.
jsinovassinnaik pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/unomi.git
The following commit(s) were added to refs/heads/master by this push:
new b68c626a4 UNOMI-867: add unique name on refresh (#713)
b68c626a4 is described below
commit b68c626a4982f63db74c6dabab6698eb84e0b582
Author: Jonathan SINOVASSIN-NAIK <[email protected]>
AuthorDate: Mon Dec 9 10:57:59 2024 +0100
UNOMI-867: add unique name on refresh (#713)
---
.../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..06d05f535 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);