Ian Botsford

Results 44 comments of Ian Botsford

Thanks for the feature request @sybarite400. We'd definitely like to be able to provide this support in the future. I'll leave this request open to allow others to 👍 upvote...

@hantsy I'm sorry to hear that downloading failed. Can you please provide your complete download code and the exception & stack trace you encountered?

I assume you're storing the result of getting the byte array into a value called `bytes`? ```kotlin val bytes = s3client.getObject(request) { it.body?.toByteArray() } ``` If so, that looks like...

It should be possible to adapt a `ByteStream` into a `Flow`. For example: ```kotlin const val bufferSize = 4096 suspend fun main() { val s3 = S3Client.fromEnvironment { } val...

Thanks @stiost for the bug report. This appears to be a variant of #256. Running some quick tests to verify.

Upon further investigation, while #256 is another example of an unknown service response (301 vs 304), _this_ issue is slightly different in that (as mentioned above) 304 is an expected...

Won't do this as written, investigating other mechanisms of ensuring API/project stability.

Hi @AlexandreBrown, thanks for the issue report. Currently the AWS SDK for Kotlin does not support GraalVM although we'd like to in the future. We believe that running the SDK...

Closing in favor of #708.