aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Boberg <[email protected]>2025-03-12 19:04:42 +0100
committerStefan Boberg <[email protected]>2025-03-12 19:04:42 +0100
commit714278a8ede293eaa9014fd5cbc84632c65f0f95 (patch)
tree5e47e322e5384556f4da55fe41deacd3da4129b0
parentchanged ReadDeltaArray to return the number of entries in the input array (diff)
downloadzen-sb/build-part-delta.tar.xz
zen-sb/build-part-delta.zip
Disable delta encoding by defaultsb/build-part-delta
-rw-r--r--src/zen/cmds/builds_cmd.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/zen/cmds/builds_cmd.cpp b/src/zen/cmds/builds_cmd.cpp
index 57739cd94..088a4d641 100644
--- a/src/zen/cmds/builds_cmd.cpp
+++ b/src/zen/cmds/builds_cmd.cpp
@@ -703,7 +703,7 @@ namespace {
#endif // EXTRA_VERIFY
}
- bool g_UseDeltaEncoding = true;
+ static bool g_UseDeltaEncoding = false;
void WriteBuildContentToCompactBinary(CbObjectWriter& PartManifestWriter,
const SourcePlatform Platform,
@@ -6876,7 +6876,7 @@ BuildsCommand::BuildsCommand()
m_UploadOptions.add_option("",
"",
"allow-deltaencoding",
- "Allow efficient encoding of build manifest. Defaults to true.",
+ "Allow efficient encoding of build manifest. Defaults to false.",
cxxopts::value(g_UseDeltaEncoding),
"<allowdeltaencoding>");