We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Metadata from S3 doesn't seem to be loaded. Calling getMetaAttribute seems to load the data but doesn't return the data back. Below is an example
getMetaAttribute
def file = s3SP["bucketname"]["filename.txt"] //file already exists log.info("ETag from AWS: " + file.getS3Object().getObjectMetadata().getETag()) //prints null log.info("ETag from karman: " + file.getMetaAttribute(Headers.CONTENT_MD5)) //prints null log.info("ETag from AWS: " + file.getS3Object().getObjectMetadata().getETag()) //prints the etag
Note that second and fourth line in the above snippet are same.
This seems to be the culprit. https://github.com/bertramdev/karman-core/blob/master/karman-aws/src/main/groovy/com/bertramlabs/plugins/karman/aws/S3CloudFile.groovy#L142
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Metadata from S3 doesn't seem to be loaded. Calling
getMetaAttribute
seems to load the data but doesn't return the data back. Below is an exampleNote that second and fourth line in the above snippet are same.
This seems to be the culprit. https://github.com/bertramdev/karman-core/blob/master/karman-aws/src/main/groovy/com/bertramlabs/plugins/karman/aws/S3CloudFile.groovy#L142
The text was updated successfully, but these errors were encountered: