From adabf0b89fff1fd8153d72d2ef72c5daf6a1d30c Mon Sep 17 00:00:00 2001 From: Anar Manafov Date: Sun, 28 Apr 2024 19:36:29 +0200 Subject: [PATCH] GH-480: Fix topology update Fixed: a regression bug causing topology update to fail on the hash validation. (GH-480) --- ReleaseNotes.md | 5 +++++ dds-agent/src/CommanderChannel.cpp | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ReleaseNotes.md b/ReleaseNotes.md index 44659138..44074d04 100644 --- a/ReleaseNotes.md +++ b/ReleaseNotes.md @@ -1,5 +1,10 @@ # DDS Release Notes +## v3.10 (2004-04-28) + +- DDS general + - Fixed: a regression bug causing topology update to fail on the hash validation. (GH-480) + ## v3.9 (2024-04-23) - DDS general diff --git a/dds-agent/src/CommanderChannel.cpp b/dds-agent/src/CommanderChannel.cpp index 8c758d59..ec2d6f7e 100644 --- a/dds-agent/src/CommanderChannel.cpp +++ b/dds-agent/src/CommanderChannel.cpp @@ -327,7 +327,7 @@ bool CCommanderChannel::on_cmdBINARY_ATTACHMENT_RECEIVED( { const fs::path gzipPath{ bp::search_path("gzip") }; stringstream ssCmd; - ssCmd << gzipPath.string() << " -d " << destFilePath; + ssCmd << gzipPath.string() << " -df " << destFilePath; string output; execute(ssCmd.str(), chrono::seconds(60), &output); // remove ".gz" extension