Created
May 8, 2012 03:12
-
-
Save mranney/2632268 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| process="prod-nr1395" loglevel="warn" timestamp="1336446641825" hostname="prod-2187" op="exception debug" caught error event on req.socket: Error: 1:error:140A1144:SSL routines:SSL_BYTES_TO_CIPHER_LIST:scsv received when renegotiating:ssl_lib.c:1354: | |
| process="prod-nr1395" loglevel="warn" timestamp="1336446641826" hostname="prod-2187" op="exception debug" caught error event on req.socket: Error: 1:error:140A1144:SSL routines:SSL_BYTES_TO_CIPHER_LIST:scsv received when renegotiating:ssl_lib.c:1354: | |
| process="prod-nr1395" loglevel="warn" timestamp="1336446641826" hostname="prod-2187" op="exception debug" caught error event on req.socket: Error: 1:error:140A1144:SSL routines:SSL_BYTES_TO_CIPHER_LIST:scsv received when renegotiating:ssl_lib.c:1354: | |
| process="prod-nr1395" loglevel="warn" timestamp="1336446641826" hostname="prod-2187" op="exception debug" caught error event on req.socket: Error: 1:error:140A1144:SSL routines:SSL_BYTES_TO_CIPHER_LIST:scsv received when renegotiating:ssl_lib.c:1354: | |
| process="prod-nr1395" loglevel="warn" timestamp="1336446641826" hostname="prod-2187" op="exception debug" caught error event on req.socket: Error: 1:error:140A1144:SSL routines:SSL_BYTES_TO_CIPHER_LIST:scsv received when renegotiating:ssl_lib.c:1354: | |
| process="prod-nr1395" loglevel="warn" timestamp="1336446641827" hostname="prod-2187" op="exception debug" caught error event on req.socket: Error: 1:error:140A1144:SSL routines:SSL_BYTES_TO_CIPHER_LIST:scsv received when renegotiating:ssl_lib.c:1354: | |
| process="prod-nr1395" loglevel="warn" timestamp="1336446641827" hostname="prod-2187" op="exception debug" caught error event on req.socket: Error: 1:error:140A1144:SSL routines:SSL_BYTES_TO_CIPHER_LIST:scsv received when renegotiating:ssl_lib.c:1354: | |
| process="prod-nr1395" loglevel="warn" timestamp="1336446641827" hostname="prod-2187" op="exception debug" caught error event on req.socket: Error: 1:error:140A1144:SSL routines:SSL_BYTES_TO_CIPHER_LIST:scsv received when renegotiating:ssl_lib.c:1354: | |
| process="prod-nr1395" loglevel="warn" timestamp="1336446641827" hostname="prod-2187" op="exception debug" caught error event on req.socket: Error: 1:error:140A1144:SSL routines:SSL_BYTES_TO_CIPHER_LIST:scsv received when renegotiating:ssl_lib.c:1354: | |
| process="prod-nr1395" loglevel="warn" timestamp="1336446641828" hostname="prod-2187" op="exception debug" caught error event on req.socket: Error: 1:error:140A1144:SSL routines:SSL_BYTES_TO_CIPHER_LIST:scsv received when renegotiating:ssl_lib.c:1354: | |
| process="prod-nr1395" loglevel="warn" timestamp="1336446641828" hostname="prod-2187" op="exception debug" caught error event on req.socket: Error: 1:error:140A1144:SSL routines:SSL_BYTES_TO_CIPHER_LIST:scsv received when renegotiating:ssl_lib.c:1354: | |
| process="prod-nr1395" loglevel="warn" timestamp="1336446641828" hostname="prod-2187" op="exception debug" caught error event on req.socket: Error: 1:error:140A1144:SSL routines:SSL_BYTES_TO_CIPHER_LIST:scsv received when renegotiating:ssl_lib.c:1354: | |
| process="prod-nr1395" loglevel="warn" timestamp="1336446641829" hostname="prod-2187" op="exception debug" caught error event on req.socket: Error: 1:error:140A1144:SSL routines:SSL_BYTES_TO_CIPHER_LIST:scsv received when renegotiating:ssl_lib.c:1354: | |
| process="prod-nr1395" loglevel="warn" timestamp="1336446641829" hostname="prod-2187" op="exception debug" caught error event on req.socket: Error: 1:error:140A1144:SSL routines:SSL_BYTES_TO_CIPHER_LIST:scsv received when renegotiating:ssl_lib.c:1354: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| HTTP_Server.prototype.new_client = function new_client(req, res) { | |
| var routed = false, | |
| filters = this.filters, | |
| client, i; | |
| // all filter functions and associated logic will be passing these around | |
| client = new Client(req, res, this); | |
| // | |
| // work around a bug in node's TLS where error events are sometimes leaking out and turning into exceptions | |
| req.on("error", function (err) { | |
| warn("exception debug", "caught error event on req: " + err); | |
| }); | |
| if (! req.socket.voxer_error_flag) { | |
| req.socket.on("error", function (err) { | |
| warn("exception debug", "caught error event on req.socket: " + err); | |
| }); | |
| if (req.socket.socket) { | |
| req.socket.socket.on("error", function (err) { | |
| warn("exception debug", "caught error event on req.socket.socket: " + err); | |
| }); | |
| } | |
| req.socket.voxer_error_flag = true; | |
| } | |
| // end of annoying workaround that I hope gets fixed at some point | |
| // |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment