We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0dae310 commit ad09236Copy full SHA for ad09236
core/src/main/scala/org/apache/spark/network/BlockTransferService.scala
@@ -94,6 +94,7 @@ abstract class BlockTransferService extends Closeable {
94
lock.synchronized {
95
val ret = ByteBuffer.allocate(data.size.toInt)
96
ret.put(data.nioByteBuffer())
97
+ ret.flip()
98
result = Left(new NioManagedBuffer(ret))
99
lock.notify()
100
}
0 commit comments