mirror of https://gitee.com/bigwinds/arangodb
suppress a warning message about non-optimal MMFiles collection data structures while doing WAL recovery, not just while upgrading. (#7811)
This commit is contained in:
parent
90ec730c07
commit
7b571d311d
|
@ -2004,7 +2004,7 @@ int MMFilesCollection::iterateMarkersOnLoad(transaction::Methods* trx) {
|
|||
_hasAllPersistentLocalIds.store(openState._hasAllPersistentLocalIds);
|
||||
auto engine = static_cast<MMFilesEngine*>(EngineSelectorFeature::ENGINE);
|
||||
LOG_TOPIC_IF(WARN, arangodb::Logger::ENGINES,
|
||||
!openState._hasAllPersistentLocalIds && !engine->upgrading())
|
||||
!openState._hasAllPersistentLocalIds && !engine->upgrading() && !engine->inRecovery())
|
||||
<< "collection '" << _logicalCollection.name() << "' does not have all "
|
||||
<< "persistent LocalDocumentIds; cannot be linked to an arangosearch view";
|
||||
|
||||
|
|
Loading…
Reference in New Issue