Details
-
Bug
-
Status: Resolved
-
Trivial
-
Resolution: Fixed
-
None
Description
The PutS3Object reports to provenance that it uses an HTTP url, when the default for the S3 is actually HTTPS. This makes it pretty misleading as to what is happening.
This is verified HTTPS via wireshark and a code review.
171 final String url = "http://" + bucket + ".s3.amazonaws.com/" + key;\r
172 final long millis = TimeUnit.NANOSECONDS.toMillis(System.nanoTime() - startNanos);\r
173 session.getProvenanceReporter().send(flowFile, url, millis);\r
Lines 104-110:
/**
- The protocol to use when connecting to Amazon Web Services.
- <p>
- The default configuration is to use HTTPS for all requests for increased
- security.
*/
private Protocol protocol = Protocol.HTTPS;