Skip to content

Commit

Permalink
Merge pull request #17400 from mvdbeek/pass_upstream_gzip_config
Browse files Browse the repository at this point in the history
[23.2] Respect ``upstream_gzip`` setting  when streaming dataset collection archive
  • Loading branch information
mvdbeek authored Jan 31, 2024
2 parents 34fab93 + fbad571 commit 14a5046
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/galaxy/webapps/galaxy/services/history_contents.py
Original file line number Diff line number Diff line change
Expand Up @@ -498,7 +498,9 @@ def prepare_collection_download(self, trans, id: DecodedDatabaseIdField) -> Asyn

def __stream_dataset_collection(self, trans, dataset_collection_instance):
archive = hdcas.stream_dataset_collection(
dataset_collection_instance=dataset_collection_instance, upstream_mod_zip=trans.app.config.upstream_mod_zip
dataset_collection_instance=dataset_collection_instance,
upstream_mod_zip=trans.app.config.upstream_mod_zip,
upstream_gzip=trans.app.config.upstream_gzip,
)
return archive

Expand Down

0 comments on commit 14a5046

Please sign in to comment.