summaryrefslogtreecommitdiffstats
path: root/vespalib
diff options
context:
space:
mode:
authorGeir Storli <geirst@verizonmedia.com>2021-01-29 14:29:59 +0000
committerGeir Storli <geirst@verizonmedia.com>2021-01-29 14:34:29 +0000
commit9a676ff3b35353424d9a02a4c09d9dd1bb655f46 (patch)
treecaab73fa5881bb5f2527b22d3138663ba27d48be /vespalib
parent1341628ee1587fb39703a4fb6e3443286435dca0 (diff)
Wire reporting of attribute resource usage all the way to the cluster controller via the host info API.
Diffstat (limited to 'vespalib')
-rw-r--r--vespalib/src/vespa/vespalib/util/address_space.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/vespalib/src/vespa/vespalib/util/address_space.cpp b/vespalib/src/vespa/vespalib/util/address_space.cpp
index 058c00e835e..113e4ba1478 100644
--- a/vespalib/src/vespa/vespalib/util/address_space.cpp
+++ b/vespalib/src/vespa/vespalib/util/address_space.cpp
@@ -16,7 +16,7 @@ AddressSpace::AddressSpace(size_t used_, size_t dead_, size_t limit_)
std::ostream &operator << (std::ostream &out, const AddressSpace &rhs)
{
- return out << "used=" << rhs.used() << ", dead=" << rhs.dead() << ", limit=" << rhs.limit();
+ return out << "{used=" << rhs.used() << ", dead=" << rhs.dead() << ", limit=" << rhs.limit() << "}";
}
} // namespace vespalib