aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKristian Aune <kkraune@users.noreply.github.com>2023-04-03 09:53:32 +0200
committerGitHub <noreply@github.com>2023-04-03 09:53:32 +0200
commit74e18beb20fe7dd7dc256f76892ba4c943501dad (patch)
tree3a0a549dd12f2b3c2e11b30f60f06d10b9576a4e
parent9d93baa2b9d23258f8e760e3d804ee9065cf9a58 (diff)
Improve error message
-rw-r--r--storage/src/vespa/storage/distributor/externaloperationhandler.cpp2
1 files changed, 1 insertions, 1 deletions
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()));
}