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 1363420 commit a324ce4Copy full SHA for a324ce4
src/main/java/org/apache/hadoop/fs/glusterfs/GlusterFUSEOutputStream.java
@@ -33,7 +33,7 @@ public class GlusterFUSEOutputStream extends OutputStream{
33
public GlusterFUSEOutputStream(String file, boolean append) throws IOException{
34
this.f=new File(file); /* not needed ? */
35
this.pos=0;
36
- this.fuseOutputStream=new FileOutputStream(file, append);
+ this.fuseOutputStream=new BufferedOutputStream(new FileOutputStream(file, append));
37
this.closed=false;
38
}
39
0 commit comments