We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
My process fails to connect to a memcache server in test logic, then the process hangs. I am calling memcached.end();, but the process still hangs.
memcached.end();
After debugging with node debugger, and wtfnode, I was able to determine that memcached was generating a couple timers in connection.js.
connection.js
After waiting 5 minutes (the failuresReset timeout), the process exits as expected.
Ideally memcache.end also closes any in-process timers, so the process may exit.
memcache.end
The text was updated successfully, but these errors were encountered:
fix 3rd-Eden#348
9bcb2f7
No branches or pull requests
My process fails to connect to a memcache server in test logic, then the process hangs. I am calling
memcached.end();
, but the process still hangs.After debugging with node debugger, and wtfnode, I was able to determine that memcached was generating a couple timers in
connection.js
.After waiting 5 minutes (the failuresReset timeout), the process exits as expected.
Ideally
memcache.end
also closes any in-process timers, so the process may exit.The text was updated successfully, but these errors were encountered: