jethrogb / rustc-commit-db

A database of Rust compiler versions and the git commit that they were built from.
Other
0 stars 4 forks source link

AWS S3 API will look for & use credentials from environment #3

Open jethrogb opened 5 years ago

jethrogb commented 5 years ago
$ ./commit-db.rb update --force                               
Checking for release updates on beta
/var/lib/gems/2.3.0/gems/aws-sigv4-1.0.3/lib/aws-sigv4/signer.rb:517:in `extract_credentials_provider': missing credentials, provide credentials with one of the following options: (Aws::Sigv4::Errors::MissingCredentialsError)
  - :access_key_id and :secret_access_key
  - :credentials
  - :credentials_provider
NickeZ commented 4 years ago

Are there any known fix to this?

MabezDev commented 4 years ago

I found that passing any credential will allow the s3 client to continue. e.g:

AWS_ACCESS_KEY_ID="test" AWS_SECRET_ACCESS_KEY="test" ./commit-db.rb update --force