summaryrefslogtreecommitdiffstats
path: root/storage
diff options
context:
space:
mode:
Diffstat (limited to 'storage')
-rw-r--r--storage/src/vespa/storage/distributor/distributor_host_info_reporter.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/storage/src/vespa/storage/distributor/distributor_host_info_reporter.cpp b/storage/src/vespa/storage/distributor/distributor_host_info_reporter.cpp
index bf7468d4c7f..3a588179eb9 100644
--- a/storage/src/vespa/storage/distributor/distributor_host_info_reporter.cpp
+++ b/storage/src/vespa/storage/distributor/distributor_host_info_reporter.cpp
@@ -38,8 +38,8 @@ writeBucketSpacesStats(vespalib::JsonStream& stream,
stream << Object() << "name" << elem.first;
if (elem.second.valid()) {
stream << "buckets" << Object()
- << "total" << static_cast<uint64_t>(elem.second.bucketsTotal())
- << "pending" << static_cast<uint64_t>(elem.second.bucketsPending())
+ << "total" << elem.second.bucketsTotal()
+ << "pending" << elem.second.bucketsPending()
<< End();
}
stream << End();