Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

S3StreamWritable bug fix #256

Merged
merged 4 commits into from
Oct 7, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ trait S3StreamWritable
if (inputStream.length > 0) {
val bytes: Array[Byte] = new Array[Byte](inputStream.length.toInt)
val bytesRead =
inputStream.read(bytes, 0, inputStream.length.toInt)
inputStream.readNBytes(bytes, 0, inputStream.length.toInt)

if (bytesRead < inputStream.length) {
throw new RuntimeException(
Expand Down Expand Up @@ -93,7 +93,7 @@ trait S3StreamWritable
val partLength = (end - start).toInt

val bytes: Array[Byte] = new Array[Byte](partLength)
val bytesRead = inputStream.read(bytes, 0, partLength)
val bytesRead = inputStream.readNBytes(bytes, 0, partLength)

if (bytesRead < partLength) {
throw new RuntimeException(
Expand Down
Loading