Skip to content

Commit

Permalink
FairRootGroupGH-480: Fix topology update
Browse files Browse the repository at this point in the history
Fixed: a regression bug causing topology update to fail on the hash validation. (FairRootGroupGH-480)
  • Loading branch information
AnarManafov committed Apr 28, 2024
1 parent 1eea274 commit adabf0b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions ReleaseNotes.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion dds-agent/src/CommanderChannel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit adabf0b

Please sign in to comment.