James Crosby
James Crosby
all requests are through the AWS sdk, so you would need to configure the AWS sdk to use a proxy: https://aws.amazon.com/blogs/developer/using-the-aws-sdk-for-javascript-from-behind-a-proxy/ fwiw, this module is not really maintained anymore, now...
In order to update an existing file in S3, this module **re-uploads the entire file**. Due to the way S3 works, it is not practical to do anything else. For...
Yes, buffers are cleared when a file is rotated due to reaching maximim age or size.
`forceNewFile` shouldn't cause an an empty file to be uploaded - the old data should be uploaded to the existing filename, and then new filename used for new data. _prepareBuffer...
(Sorry closed by keyboard shortcut by mistake)
Actually, the issue might be that we don't save the old filename, so putObject is called with the new filename instead of the old one. I think here: https://github.com/Coggle/s3-streamlogger/blob/master/index.js#L128 it...
This is still an issue.
👍 Also just spent a while solving an issue where I'd specified a `{method:'post'}` instead of `POST` to `undici.request`, getting me a cloudflare 400 from an API, so it seems...
FWIW it seems like the current behaviour of [fast-content-type-parse](https://github.com/fastify/fast-content-type-parse/blob/master/index.js#L146) is consistent with the behaviour of jshttp/content-type which has been that way for a very long time, but I guess the...
Apart from charset the only other parameter which could occur in the content-type header would be `boundary=`, I think? Which presumably would be case sensitive, but which wouldn't matter for...