-
Notifications
You must be signed in to change notification settings - Fork 9.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cannot read property '_destroySSL' of undefined at destroySSL #73
Comments
Looks like:
is coming from the chrome remote interface |
I tried to diagnose this exception but only got so far. I'm pretty sure it's a node core bug, as that area (_tls_wrap.js) has gotten some fixes. |
Took another stab last night. AFAIK, this is due to the |
fixed by #83 |
I just ran into this using lighthouse 1.4.1 as a submodule. @paulirish did you ever submit a CL for devtools? |
Yes. Fixed over there: https://codereview.chromium.org/2615083002 But we'll need to bump our dependency to handle the update: #1535 |
Still seeing this in TravisCI when I launch chrome programmatically |
still seeing this too, running lighthouse on heroku. |
@two7sclash evaluate this after lighthouse is required: self.setImmediate = function(callback, ...argsForCallback) {
Promise.resolve().then(() => callback(...argsForCallback));
return 0;
}; sorry for this, guys. |
Just tried running a lighthouse trace and hit the following issues:
launch-chrome.sh is OS X. Would it be worth considering moving this to an npm script and using which to pick the version of chrome to use
Node 5.9.1 is required. We could add a check for >= 5.9 and throw a warning otherwise
On linux I get the following error:
TypeError: Cannot read property '_destroySSL' of undefined
at destroySSL (_tls_wrap.js:370:7)
Going to dig into that one and try and figure out the problem but wanted to raise an issue on it..
The text was updated successfully, but these errors were encountered: