From f126f901e00dc8ce028201a87c04831bc7824dcc Mon Sep 17 00:00:00 2001 From: Yves Coriton Date: Tue, 12 Dec 2023 17:50:47 +0100 Subject: [PATCH] Docker: Usable snapshot import args --- CHANGES.rst | 3 +++ scripts/docker/entrypoint.inc.sh | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGES.rst b/CHANGES.rst index de8a71864991..79c4b4aa1419 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -72,6 +72,9 @@ Codec Docker Images ------------- +- Fixed the Docker ``octez-snapshot-import`` command to properly pass + arguments to the snapshot import process. (MR :gl:`!11259`) + Smart Rollup node ----------------- diff --git a/scripts/docker/entrypoint.inc.sh b/scripts/docker/entrypoint.inc.sh index 58e82498f569..9ff1d95fffd9 100644 --- a/scripts/docker/entrypoint.inc.sh +++ b/scripts/docker/entrypoint.inc.sh @@ -166,7 +166,7 @@ snapshot_import() { check_image_version - exec "$node" snapshot "$@" import /snapshot --data-dir "$node_data_dir" + exec "$node" snapshot import /snapshot --data-dir "$node_data_dir" "$@" } -- GitLab