Skip to content

Commit

Permalink
Automated rollback of commit 0654620.
Browse files Browse the repository at this point in the history
*** Reason for rollback ***

Not a proper fix.

*** Original change description ***

Enable bulk writes in the HttpBlobStore

This was a performance regression in bazelbuild@deccc48.

Fixed bazelbuild#4944.

PiperOrigin-RevId: 191133416
  • Loading branch information
ulfjack authored and Copybara-Service committed Mar 30, 2018
1 parent 351efff commit 6f18931
Showing 1 changed file with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -205,12 +205,6 @@ private boolean get(String key, OutputStream out, boolean casDownload)
OutputStream wrappedOut =
new FilterOutputStream(out) {

@Override
public void write(byte[] b, int offset, int length) throws IOException {
dataWritten.set(true);
super.write(b, offset, length);
}

@Override
public void write(int b) throws IOException {
dataWritten.set(true);
Expand Down

0 comments on commit 6f18931

Please sign in to comment.