Skip to content

Commit d424a11

Browse files
committed
Addressed review comments
Signed-off-by: Krishna Kondaka <[email protected]>
1 parent a139c92 commit d424a11

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

data-prepper-plugins/cloudwatch-logs/src/main/java/org/opensearch/dataprepper/plugins/sink/cloudwatch_logs/client/CloudWatchLogsClientFactory.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ private CloudWatchLogsClientFactory() {
2828
* @return CloudWatchLogsClient used to interact with CloudWatch Logs services.
2929
*/
3030
public static CloudWatchLogsClient createCwlClient(final AwsConfig awsConfig, final AwsCredentialsSupplier awsCredentialsSupplier) {
31-
final AwsCredentialsProvider awsCredentialsProvider = awsConfig != null ? awsCredentialsSupplier.getProvider(convertToCredentialOptions(awsConfig)) : awsCredentialsSupplier.getProvider(AwsCredentialsOptions.defaultOptionsWithDefaultCredentialsProvider());
31+
final AwsCredentialsProvider awsCredentialsProvider = awsConfig != null ? awsCredentialsSupplier.getProvider(convertToCredentialOptions(awsConfig)) : awsCredentialsSupplier.getProvider(AwsCredentialsOptions.builder().build());
3232
Region region = awsConfig != null ? awsConfig.getAwsRegion() : awsCredentialsSupplier.getDefaultRegion().get();
3333

3434
if (awsCredentialsProvider == null || region == null) {

0 commit comments

Comments
 (0)