Skip to content

Commit

Permalink
[ACS-9069] Fix failing tests after configuration change in lifeIndexe…
Browse files Browse the repository at this point in the history
…r that makes subscription durable by default
  • Loading branch information
cezary-witkowski committed Dec 11, 2024
1 parent b47c220 commit db6a055
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,11 @@ private void internalTestEnabledFeatures(
// Delete index documents
cleanUpIndex();
// Restart ElasticsearchConnector to Index Content
AlfrescoStackInitializer.liveIndexer.start();
if (contentIndexingEnabled)
{
// Reindexer requires lifeIndexer to index content.
AlfrescoStackInitializer.liveIndexer.start();
}

// WHEN
// Run reindexer leaving ALFRESCO_REINDEX_TO_TIME as default
Expand Down

0 comments on commit db6a055

Please sign in to comment.