summaryrefslogtreecommitdiffstats
path: root/storageapi
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2016-11-17 23:42:19 +0000
committerHenning Baldersheim <balder@yahoo-inc.com>2016-11-17 23:42:19 +0000
commitf3b0b222964992630d01b1e7d46db983cd7ad70a (patch)
tree52e1004213348aef3ecfb73ac29984ab4d8c83f5 /storageapi
parentc80cbf3e3e4ff210e470bf1cf636d7eec6106139 (diff)
Missing include for vector
Diffstat (limited to 'storageapi')
-rw-r--r--storageapi/src/vespa/storageapi/message/bucket.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/storageapi/src/vespa/storageapi/message/bucket.cpp b/storageapi/src/vespa/storageapi/message/bucket.cpp
index e2450ca17ca..08057039cb1 100644
--- a/storageapi/src/vespa/storageapi/message/bucket.cpp
+++ b/storageapi/src/vespa/storageapi/message/bucket.cpp
@@ -180,7 +180,7 @@ void GetBucketDiffCommand::Entry::print(std::ostream& out, bool verbose,
const std::string& indent) const
{
out << "Entry(timestamp: " << _timestamp
- << ", " << _gid << ", hasMask: 0x" << _hasMask;
+ << ", " << _gid.toString() << ", hasMask: 0x" << _hasMask;
if (verbose) {
out << ",\n" << indent << " " << "header size: "
<< std::dec << _headerSize << ", body size: " << _bodySize
@@ -312,7 +312,7 @@ void ApplyBucketDiffCommand::Entry::print(
_headerBlob.size());
if (_repo) {
document::Document doc(*_repo, buf);
- out << ",\n" << indent << " " << doc.getId().getGlobalId();
+ out << ",\n" << indent << " " << doc.getId().getGlobalId().toString();
} else {
out << ",\n" << indent << " unknown global id. (repo missing)";
}