diff --git a/lib/streams.js b/lib/streams.js index b9e8f95..c00796f 100644 --- a/lib/streams.js +++ b/lib/streams.js @@ -38,7 +38,7 @@ function InputStream() { stream.Readable.call(this); this._buffer = []; - this._canPush = true; + this._canPush = false; } util.inherits(InputStream, stream.Readable); @@ -148,7 +148,7 @@ function IOStream(conn, id, recordType) { this.recordType = recordType || fcgi.records.StdOut; this._buffer = []; - this._canPush = true; + this._canPush = false; this._conn = conn; this._id = id;