mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-24 17:32:48 +00:00
Fix AR-1143 - do not check for indexes on AVM stores.
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@4671 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -202,6 +202,12 @@ public class ConfigurationChecker extends AbstractLifecycleBean
|
||||
List<StoreRef> missingIndexStoreRefs = new ArrayList<StoreRef>(0);
|
||||
for (StoreRef storeRef : storeRefs)
|
||||
{
|
||||
// TODO: For now, do not check existence of index for AVM stores
|
||||
if (storeRef.getProtocol().equals(StoreRef.PROTOCOL_AVM))
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
||||
NodeRef rootNodeRef = null;
|
||||
try
|
||||
{
|
||||
|
Reference in New Issue
Block a user