Scan text in 64KB chunks
@@ -75,7 +75,8 @@ func (entry *Entry) writerScanner(reader *io.PipeReader, printFunc func(args ...
if len(data) > chunkSize {
return chunkSize, data[:chunkSize], nil
}
return 0, nil, nil
return len(data), data, nil
//Use the custom split function to split the input
The note is not visible to the blocked user.