summaryrefslogtreecommitdiff
path: root/lib/http2.js
diff options
context:
space:
mode:
authorRich Trott <rtrott@gmail.com>2017-08-26 12:28:07 -0700
committerRich Trott <rtrott@gmail.com>2017-08-26 13:13:17 -0700
commitf912080bf2d8fd024d3443f3ab9e399bc84a724b (patch)
tree3e7788b04811297547de8edb4ea2c88f7352b7f9 /lib/http2.js
parent99c478eb3629292e625a4d2fd634e89f0120ab91 (diff)
downloadandroid-node-v8-f912080bf2d8fd024d3443f3ab9e399bc84a724b.tar.gz
android-node-v8-f912080bf2d8fd024d3443f3ab9e399bc84a724b.tar.bz2
android-node-v8-f912080bf2d8fd024d3443f3ab9e399bc84a724b.zip
Revert "http2: refactor error handling"
This reverts commit 4ca8ff264f368c301827e07956f313cebd1b8de8. That commit was landed without a green CI and is failing on Windows. PR-URL: https://github.com/nodejs/node/pull/15047 Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'lib/http2.js')
-rw-r--r--lib/http2.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/http2.js b/lib/http2.js
index de06de1cc4..ab9e33b2a2 100644
--- a/lib/http2.js
+++ b/lib/http2.js
@@ -15,7 +15,7 @@ const {
createSecureServer,
connect,
Http2ServerRequest,
- Http2ServerResponse
+ Http2ServerResponse,
} = require('internal/http2/core');
module.exports = {
@@ -27,5 +27,5 @@ module.exports = {
createSecureServer,
connect,
Http2ServerResponse,
- Http2ServerRequest
+ Http2ServerRequest,
};