Skip to content

Commit 2924582

Browse files
fixing the download of a single QeAppWorkChain (#915)
* This fixes #914 * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
1 parent d4da2d4 commit 2924582

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

src/aiidalab_qe/app/result/utils/download_data.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,13 @@ def produce_bitestream(node, what="archive"):
146146
from aiida.tools.archive.create import create_archive
147147

148148
path = pathlib.Path(dirpath) / "archive.aiida"
149-
create_archive(entities=[reloaded_node], filename=path)
149+
create_archive(
150+
entities=[reloaded_node],
151+
filename=path,
152+
call_calc_backward=False,
153+
call_work_backward=False,
154+
create_backward=False,
155+
)
150156
with open(path, "rb") as f:
151157
zip_data = f.read()
152158

0 commit comments

Comments
 (0)