aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Musum <musum@yahooinc.com>2023-04-26 15:34:16 +0200
committerGitHub <noreply@github.com>2023-04-26 15:34:16 +0200
commiteec45b9c45a46fc242f6dfaa5a2291c6a689256a (patch)
tree756026e45e1f97c3144f953146ddaeea05e19970
parentf5bc53a2187a0c04e5ebfabff0f27aeb1db1e6d1 (diff)
Revert "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 a3190d427d8..6cb404aaa0a 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, see https://docs.vespa.ai/en/operations/feed-block.html: " +
+ "External feed is blocked due to resource exhaustion: " +
feed_block->description()));
}