Skip to content

Commit

Permalink
[hotfix] [e2e] Do not print S3 credentials in test scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
StephanEwen committed Nov 16, 2018
1 parent 130ebac commit 7758f2e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions flink-end-to-end-tests/test-scripts/common_s3.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,14 @@ if [[ -z "$IT_CASE_S3_ACCESS_KEY" ]]; then
echo "Did not find AWS environment variables, NOT running the e2e test."
exit 0
else
echo "Found AWS access key $IT_CASE_S3_ACCESS_KEY, running the e2e test."
echo "Found AWS access key, running the e2e test."
fi

if [[ -z "$IT_CASE_S3_SECRET_KEY" ]]; then
echo "Did not find AWS environment variables, NOT running the e2e test."
exit 0
else
echo "Found AWS secret key $IT_CASE_S3_SECRET_KEY, running the e2e test."
echo "Found AWS secret key, running the e2e test."
fi

AWS_REGION="${AWS_REGION:-us-east-1}"
Expand Down

0 comments on commit 7758f2e

Please sign in to comment.