Skip to content

Commit ee6e1ec

Browse files
committed
The aws configuration object was using the access key as both the access key and the secret key... Not great.
1 parent a375e47 commit ee6e1ec

File tree

1 file changed

+1
-1
lines changed
  • src/main/java/com/ProActiveQueue/ProActiveQueueClient/Configuration

1 file changed

+1
-1
lines changed

src/main/java/com/ProActiveQueue/ProActiveQueueClient/Configuration/AwsConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ private AWSCredentialsProvider getCredentials(){
3939
throw new IllegalStateException("You must provide an AwsConfigurationValues config to setConfiguration()");
4040
}
4141
final String access = values.awsAccessKey;
42-
final String secret = values.awsAccessKey;
42+
final String secret = values.awsSecretKey;
4343
return new AWSCredentialsProvider() {
4444
@Override
4545
public AWSCredentials getCredentials() {

0 commit comments

Comments
 (0)