Skip to content

Commit

Permalink
fix: nit
Browse files Browse the repository at this point in the history
  • Loading branch information
atanmarko committed Oct 31, 2024
1 parent 96a23d9 commit 78c89db
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion scripts/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ services:
depends_on:
rabbitmq:
condition: service_healthy
command: bash -c "leader --runtime amqp --num-workers 2 --proof-output-dir ./proofs --block-batch-size ${LEADER_BLOCK_BATCH_SIZE} stdio < /witness"
command: bash -c "leader --runtime amqp --proof-output-dir ./proofs --block-batch-size ${LEADER_BLOCK_BATCH_SIZE} stdio < /witness"
environment:
- RUST_LOG=info
- AMQP_URI=amqp://rabbitmq:5672
Expand Down
4 changes: 2 additions & 2 deletions scripts/prove_stdio_docker_compose.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

export LEADER_INPUT_JSON_FILE=$1

export LEADER_BLOCK_BATCH_SIZE="${BLOCK_BATCH_SIZE:-8}"
export LEADER_BLOCK_BATCH_SIZE="${BLOCK_BATCH_SIZE:-8}"

REPO_ROOT=$(git rev-parse --show-toplevel)

Expand All @@ -13,4 +13,4 @@ chmod 777 "$PROOF_OUTPUT_DIR"
export DOCKER_CIRCUITS_CACHE_DIR="./docker_circuit_cache"
mkdir -p --mode=777 "$DOCKER_CIRCUITS_CACHE_DIR/worker"

docker compose up
docker compose up

0 comments on commit 78c89db

Please sign in to comment.