82bff85051
ArangoDB is a production ready highly available Multi-Model NoSQL database PR: 223240 Submitted by: dev@dudu.ro Differential Revision: https://reviews.freebsd.org/D12793
11 lines
413 B
C++
11 lines
413 B
C++
--- arangod/Agency/Store.cpp.orig 2017-11-15 11:23:07 UTC
|
|
+++ arangod/Agency/Store.cpp
|
|
@@ -601,7 +601,7 @@ void Store::dumpToBuilder(Builder& build
|
|
auto ts = std::chrono::duration_cast<std::chrono::seconds>(
|
|
i.first.time_since_epoch())
|
|
.count();
|
|
- builder.add(i.second, VPackValue(ts));
|
|
+ builder.add(i.second, VPackValue((int64_t)ts));
|
|
}
|
|
}
|
|
{
|