aboutsummaryrefslogtreecommitdiffstats
path: root/storageapi
diff options
context:
space:
mode:
Diffstat (limited to 'storageapi')
-rw-r--r--storageapi/src/vespa/storageapi/message/bucket.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/storageapi/src/vespa/storageapi/message/bucket.cpp b/storageapi/src/vespa/storageapi/message/bucket.cpp
index 2323a1ab0a4..0f03c63ca93 100644
--- a/storageapi/src/vespa/storageapi/message/bucket.cpp
+++ b/storageapi/src/vespa/storageapi/message/bucket.cpp
@@ -493,6 +493,8 @@ RequestBucketInfoCommand::print(std::ostream& out, bool verbose,
if (hasSystemState()) {
out << "distributor " << _distributor << " in ";
_state->print(out, verbose, indent + " ");
+ } else if (super_bucket_id().isSet()) {
+ out << ", super bucket " << super_bucket_id() << ". ";
}
if (verbose && !_buckets.empty()) {
out << "\n" << indent << " Specified buckets:\n" << indent << " ";
@@ -529,6 +531,8 @@ RequestBucketInfoReply::print(std::ostream& out, bool verbose,
out << "RequestBucketInfoReply(" << _buckets.size();
if (_full_bucket_fetch) {
out << ", full fetch";
+ } else if (super_bucket_id().isSet()) {
+ out << ", super bucket " << super_bucket_id();
}
if (verbose) {
out << "\n" << indent << " ";