From c7244ccbf9c32fb8c27a4579c6adb4f93ceffc7b Mon Sep 17 00:00:00 2001 From: Pedro Nauck Date: Mon, 9 Dec 2024 16:04:58 -0300 Subject: [PATCH] build(repo): Fix run-publisher script --- .gitignore | 2 +- scripts/run_publisher.sh | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index e44210bb..c3ed4a0a 100644 --- a/.gitignore +++ b/.gitignore @@ -13,7 +13,7 @@ lcov.info node_modules/ docker/db* tmp -/docker/db* +**/**/docker/db* build_rs_cov.profraw profile.json .rust-version diff --git a/scripts/run_publisher.sh b/scripts/run_publisher.sh index df17d5b3..7d29d677 100755 --- a/scripts/run_publisher.sh +++ b/scripts/run_publisher.sh @@ -98,8 +98,8 @@ COMMON_ARGS=( "--relayer" "${RELAYER}" "--ip=0.0.0.0" "--service-name" "fuel-${NETWORK}-node" - "--db-path" "./docker/db-${NETWORK}" - "--snapshot" "./docker/chain-config/${NETWORK}" + "--db-path" "./cluster/docker/db-${NETWORK}" + "--snapshot" "./cluster/chain-config/${NETWORK}" "--nats-url" "nats://localhost:4222" "--port" "${PORT}" "--telemetry-port" "${TELEMETRY_PORT}"