Potential bug with ByteStream
's implementation of futures_core::stream::Stream
#1460
Labels
ByteStream
's implementation of futures_core::stream::Stream
#1460
The implementation of futures::core::stream
for
ByteStreamis potentially bugged. We've never hit this bug because we only ever parameterize
ByteStreams on
SdkBodywhich emits all its data in a single chunk. If we used a different type that emitted data in chunks,
ByteStream` would perform incomplete reads of data. This is because we're only reading one chunk when we should be reading all remaining data.The text was updated successfully, but these errors were encountered: