Skip to content

Commit

Permalink
fix s3md args
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniil Ushkov committed May 10, 2023
1 parent e6192ac commit c2d4f1a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/cluster/proxy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ jclouds.regions=us-west-2
EOF

PROXY_BIN="java -DLOG_LEVEL=trace -Djclouds.wire=debug -jar s3proxy.jar --properties s3proxy.properties"
export S3CMD_ARGS="--access_key=foo --secret_key=bar"
export AWS_ACCESS_KEY_ID=foo
export AWS_SECRET_ACCESS_KEY=bar
export ENDPOINT=http://localhost:$PROXY_PORT
Expand All @@ -28,13 +29,14 @@ sleep 15

_kill_s3proxy() {
echo "=== Kill s3proxy"
# kill -9 $PROXY_PID
kill -9 $PROXY_PID
}

echo "=== Create s3://test"

_s3cmd() {
s3cmd \
$S3CMD_ARGS \
--signature-v2 \
--no-ssl \
--host-bucket="" \
Expand Down

0 comments on commit c2d4f1a

Please sign in to comment.