mirror of https://gitee.com/bigwinds/arangodb
fix misleading instruction in error message (#8821)
This commit is contained in:
parent
b18b8b05aa
commit
1b36a68742
|
@ -1,6 +1,9 @@
|
|||
v3.4.6 (XXXX-XX-XX)
|
||||
-------------------
|
||||
|
||||
* fixed internal issue #3893: correct wrong option name `--database.ignore-logfile-errors`
|
||||
in error message and correct it to `--database.ignore-datafile-errors`
|
||||
|
||||
* fixed internal issue #2946: create graph autocomplete was not working under
|
||||
certain circumstances.
|
||||
|
||||
|
|
|
@ -164,7 +164,7 @@ void CheckVersionFeature::checkVersion() {
|
|||
LOG_TOPIC(WARN, Logger::STARTUP)
|
||||
<< "in order to automatically fix the VERSION file on startup, "
|
||||
<< "please start the server with option "
|
||||
"`--database.ignore-logfile-errors true`";
|
||||
"`--database.ignore-datafile-errors true`";
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -110,14 +110,14 @@ UpgradeResult Upgrade::startup(TRI_vocbase_t& vocbase, bool isUpgrade, bool igno
|
|||
// give it another try
|
||||
LOG_TOPIC(WARN, Logger::STARTUP)
|
||||
<< "overwriting unparsable VERSION file with default value "
|
||||
<< "because option `--database.ignore-logfile-errors` is set";
|
||||
<< "because option `--database.ignore-datafile-errors` is set";
|
||||
vinfo = methods::Version::check(&vocbase);
|
||||
}
|
||||
} else {
|
||||
LOG_TOPIC(WARN, Logger::STARTUP)
|
||||
<< "in order to automatically fix the VERSION file on startup, "
|
||||
<< "please start the server with option "
|
||||
"`--database.ignore-logfile-errors true`";
|
||||
"`--database.ignore-datafile-errors true`";
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue