|
||||||||
This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators. For more information on JIRA, see: http://www.atlassian.com/software/jira |
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
You can increase the buffer size by passing something like -Dcom.amazonaws.sdk.s3.defaultStreamBufferSize=15728640 to the jenkins java command-line. (This raises the buffer to 15MB from 128KB, which means that errors in the first 15MB are recoverable.)
It would be nice, though, if it this were fully avoidable, but I guess since Jenkins supports uploads from other servers (not just local files) you can't just pass a File object to AmazonS3Client.putObject, and so there needs to be some buffering to make the InputStream repeatable.