From d280205476635d20eb98c126ff8522f1dc42e3e9 Mon Sep 17 00:00:00 2001 From: Michael Hackstein Date: Wed, 28 Nov 2018 10:54:19 +0100 Subject: [PATCH] Improved help message for a failed restore of foxx services (#7495) --- arangosh/Restore/RestoreFeature.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arangosh/Restore/RestoreFeature.cpp b/arangosh/Restore/RestoreFeature.cpp index 4e43f8db3f..b5c9661602 100644 --- a/arangosh/Restore/RestoreFeature.cpp +++ b/arangosh/Restore/RestoreFeature.cpp @@ -759,7 +759,7 @@ arangodb::Result processInputDirectory( // if we get here we need to trigger foxx heal Result res = ::triggerFoxxHeal(httpClient); 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."; } }