1
0
Fork 0

fixed leak

This commit is contained in:
Jan Steemann 2016-02-08 18:06:11 +01:00
parent 2f5b9e8ace
commit 4bc33cafaf
1 changed files with 1 additions and 1 deletions

View File

@ -1469,7 +1469,7 @@ void TRI_replication_applier_t::toVelocyPack(VPackBuilder& builder) const {
// add server info
builder.add("server", VPackValue(VPackValueType::Object));
builder.add("version", VPackValue(TRI_VERSION));
builder.add("serverId", VPackValue(TRI_StringUInt64(TRI_GetIdServer())));
builder.add("serverId", VPackValue(std::to_string(TRI_GetIdServer())));
builder.close(); // server
if (config._endpoint != nullptr) {