Skip to content

Commit c2d4f1a

Browse files
author
Daniil Ushkov
committed
fix s3md args
1 parent e6192ac commit c2d4f1a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

test/cluster/proxy.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ jclouds.regions=us-west-2
1414
EOF
1515

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

2930
_kill_s3proxy() {
3031
echo "=== Kill s3proxy"
31-
# kill -9 $PROXY_PID
32+
kill -9 $PROXY_PID
3233
}
3334

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

3637
_s3cmd() {
3738
s3cmd \
39+
$S3CMD_ARGS \
3840
--signature-v2 \
3941
--no-ssl \
4042
--host-bucket="" \

0 commit comments

Comments
 (0)