Skip to content

Commit fbc20f6

Browse files
committed
fix: missing init files
1 parent cbaf6df commit fbc20f6

File tree

3 files changed

+16
-2
lines changed

3 files changed

+16
-2
lines changed

crates/batcher/.env.docker

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ AWS_SECRET_ACCESS_KEY_SECONDARY=test2
1111
AWS_REGION_SECONDARY=us-west-1
1212
AWS_ACCESS_KEY_ID_SECONDARY=test2
1313
AWS_BUCKET_NAME_SECONDARY=aligned.storage
14-
UPLOAD_ENDPOINT_SECONDARY=http://localhost:4567
15-
DOWNLOAD_ENDPOINT_SECONDARY=http://localhost:4567/aligned.storage
14+
UPLOAD_ENDPOINT_SECONDARY=http://localstack2:4567
15+
DOWNLOAD_ENDPOINT_SECONDARY=http://localstack2:4567/aligned.storage
1616

1717
RUST_LOG=info
1818
RUST_BACKTRACE=1

scripts/init-s3-main.sh

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/bin/bash
2+
python3 /etc/localstack/init/ready.d/init-s3.py \
3+
--endpoint_url http://localhost:4566 \
4+
--access_key test \
5+
--secret_key test \
6+
--bucket_name aligned.storage \
7+
--region us-east-2

scripts/init-s3-secondary.sh

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/bin/bash
2+
python3 /etc/localstack/init/ready.d/init-s3.py \
3+
--endpoint_url http://localhost:4567 \
4+
--access_key test2 \
5+
--secret_key test2 \
6+
--bucket_name aligned.storage \
7+
--region us-west-1

0 commit comments

Comments
 (0)