braid-http 1.3.89 → 1.3.90
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/braid-http-server.js +2 -1
- package/package.json +1 -1
package/braid-http-server.js
CHANGED
|
@@ -468,8 +468,9 @@ function braidify (req, res, next) {
|
|
|
468
468
|
key === '_events' || key === 'emit'
|
|
469
469
|
|
|
470
470
|
// empirically, on an http1 server,
|
|
471
|
-
//
|
|
471
|
+
// these cause res2 to close prematurely
|
|
472
472
|
|| key === 'destroyed'
|
|
473
|
+
|| key === '_closed'
|
|
473
474
|
|
|
474
475
|
// adding these lines gets rid of some deprecation warnings.. keep?
|
|
475
476
|
|| key === '_headers'
|