From 21388b2e2acddf32b9d44ea33445dd9910c3c2f6 Mon Sep 17 00:00:00 2001 From: jsteemann Date: Sat, 1 Sep 2018 21:15:32 +0200 Subject: [PATCH] switch back changed default value of `overwrite` this change went unnoticed since January, but must be reverted because it changes the default behavior of arangodump --- arangosh/Dump/DumpFeature.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arangosh/Dump/DumpFeature.h b/arangosh/Dump/DumpFeature.h index 7d700ebb5b..a780543836 100644 --- a/arangosh/Dump/DumpFeature.h +++ b/arangosh/Dump/DumpFeature.h @@ -74,7 +74,7 @@ class DumpFeature : public application_features::ApplicationFeature { bool force{false}; bool ignoreDistributeShardsLikeErrors{false}; bool includeSystemCollections{false}; - bool overwrite{true}; + bool overwrite{false}; bool progress{true}; };