Skip to content

Commit

Permalink
fix : After upgrading from Exo 6.3.4 to Exo 6.4.x the People Advanced…
Browse files Browse the repository at this point in the history
… Search doesn't list all the searched users - EXO-64127 - Meeds-io/meeds#1057
  • Loading branch information
sofyenne committed Aug 8, 2023
1 parent 0acc98f commit 98ce7df
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,9 @@ public void reindex() {
+ ", response code = " + response.getStatusCode() + " message = " + response.getMessage());
} else {
LOG.info("Reindexation finished for index from old index {} to new index {}", oldIndex, newIndex);
LOG.info("START::Delete files index {}", oldIndex);
LOG.info("START::Delete profiles index {}", oldIndex);
analyticsESClient.sendHttpDeleteRequest(oldIndex);
LOG.info("END::Delete old files index {} successfully", oldIndex);
LOG.info("END::Delete old profiles index {} successfully", oldIndex);
LOG.info("END::Index '{}' migration to {} successfully. The operation took {} milliseconds.",
oldIndex,
newIndex,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@
</value-param>
<value-param>
<name>plugin.upgrade.target.version</name>
<description>The plugin target version (will not be executed if previous version is equal or higher than 6.3.0)</description>
<value>6.3.0</value>
<description>The plugin target version</description>
<value>6.5.0</value>
</value-param>
<value-param>
<name>plugin.execution.order</name>
Expand All @@ -57,12 +57,12 @@
<value-param>
<name>oldIndex</name>
<description>Old index name</description>
<value>${exo.upgrade.reindex.old.index:}</value>
<value>profile_v2 </value>
</value-param>
<value-param>
<name>newIndex</name>
<description>New index name</description>
<value>${exo.upgrade.reindex.new.index:}</value>
<value>profile_v3</value>
</value-param>
</init-params>
</component-plugin>
Expand Down

0 comments on commit 98ce7df

Please sign in to comment.