1
0
Fork 0

Improved help message for a failed restore of foxx services (#7495)

This commit is contained in:
Michael Hackstein 2018-11-28 10:54:19 +01:00
parent 95fd5793a1
commit d280205476
1 changed files with 1 additions and 1 deletions

View File

@ -759,7 +759,7 @@ arangodb::Result processInputDirectory(
// if we get here we need to trigger foxx heal // if we get here we need to trigger foxx heal
Result res = ::triggerFoxxHeal(httpClient); Result res = ::triggerFoxxHeal(httpClient);
if (res.fail()) { if (res.fail()) {
LOG_TOPIC(WARN, Logger::RESTORE) << "Reloading of Foxx failed. In the cluster Foxx Services will be available eventually, On SingleServers send a PUT to "; LOG_TOPIC(WARN, Logger::RESTORE) << "Reloading of Foxx failed. In the cluster Foxx Services will be available eventually, On SingleServers send a POST to '/_api/foxx/_local/heal' on the current database, with an empty body.";
} }
} }