lib/rbbt/tsv/accessor.rb in rbbt-util-5.20.2 vs lib/rbbt/tsv/accessor.rb in rbbt-util-5.20.3
- old
+ new
@@ -592,10 +592,10 @@
end
io = dumper_stream(keys, no_options)
str = ''
- while block = io.read(2048)
+ while block = io.read(Misc::BLOCK_SIZE)
str << block
end
str
end