From 74e18beb20fe7dd7dc256f76892ba4c943501dad Mon Sep 17 00:00:00 2001 From: Kristian Aune Date: Mon, 3 Apr 2023 09:53:32 +0200 Subject: Improve error message --- storage/src/vespa/storage/distributor/externaloperationhandler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/storage/src/vespa/storage/distributor/externaloperationhandler.cpp b/storage/src/vespa/storage/distributor/externaloperationhandler.cpp index 6cb404aaa0a..a3190d427d8 100644 --- a/storage/src/vespa/storage/distributor/externaloperationhandler.cpp +++ b/storage/src/vespa/storage/distributor/externaloperationhandler.cpp @@ -144,7 +144,7 @@ void ExternalOperationHandler::bounce_with_result(api::StorageCommand& cmd, cons void ExternalOperationHandler::bounce_with_feed_blocked(api::StorageCommand& cmd) { const auto& feed_block = _op_ctx.cluster_state_bundle().feed_block(); bounce_with_result(cmd, api::ReturnCode(api::ReturnCode::NO_SPACE, - "External feed is blocked due to resource exhaustion: " + + "External feed is blocked due to resource exhaustion, see https://docs.vespa.ai/en/operations/feed-block.html: " + feed_block->description())); } -- cgit v1.2.3