-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
Uncaught TypeError when using keep-alive HTTP agent #1137
Comments
@cdhowie |
These service tests exclusively run against DynamoDB. At the point where it fails, there are multiple concurrent requests and they are all DeleteItem requests. It will consistently fail on that test, and I haven't been able to locate any bug in my code (yet). It probably makes it through 50 or so requests before failing, and I know that some of the other tests involve concurrent deletions. Everything works fine until I enable keepalive. |
My spidey sense says this is actually a bug in Node's The first stack frame shown is this Node-internal code:
The |
I am seeing the same behavior on Node 6.6.0 using the stock |
Closing old issues. Please open a new issue if you are still encountering this behavior. |
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs and link to relevant comments in this thread. |
By simply adding this code to our application:
The following exception is thrown some time later, after numerous successful operations:
Changing
keepAlive
tofalse
eliminates the errors.Node 4.5.0 and aws-sdk 2.6.2.
The text was updated successfully, but these errors were encountered: