MikeThomsen commented on pull request #5779:
URL: https://github.com/apache/nifi/pull/5779#issuecomment-1046124963
The build failed, but fixed locally (with `-Pcontrib-check` successfully
running on nifi-aws-bundle) with this:
```
final String bucket =
context.getProperty(BUCKET).evaluateAttributeExpressions(attributes).getValue();
final String key =
context.getProperty(KEY).evaluateAttributeExpressions(attributes).getValue();
- final AmazonS3 client = getConfiguration(context).getClient();
+ final AmazonS3Client client = getConfiguration(context).getClient();
final GetObjectMetadataRequest request =
createGetObjectMetadataRequest(context, attributes);
```
I'll apply the fix locally. Thanks for the patch.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]