1
0
Fork 0

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:
Jan 2018-12-20 16:52:25 +01:00 committed by GitHub
parent 90ec730c07
commit 7b571d311d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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";