Skip to content

Commit 34865d2

Browse files
committed
Fix rebase introduced issue
1 parent 17b36d3 commit 34865d2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

network/common/src/main/java/org/apache/spark/network/buffer/FileSegmentManagedBuffer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,6 +154,6 @@ public String toString() {
154154

155155
@Override
156156
public boolean isDirect() {
157-
return length >= MIN_MEMORY_MAP_BYTES;
157+
return length >= conf.memoryMapBytes();
158158
}
159159
}

0 commit comments

Comments
 (0)