-
Notifications
You must be signed in to change notification settings - Fork 26
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
Socket hang up during long-running sequences #24
Comments
I will try to reproduce. This has indeed nothing to do with |
i'm wondering if this is related to connection-open timeouts. the openwhisk npm is using the default open timeout from needle: 10 seconds. if i increase this, the socket hangup issues seem to be reduced, in my initial testing. i'm not sure why, sometimes, it takes more than 10 seconds to establish a connection... |
1.3.368 has a workaround for this. the core issue is here: tomas/needle#229 |
I have a composer sequence that invokes a long-running (atomic) action. The action takes about 25s to run. After about 10s, I get the error
from the sequence app. (After another 15s, the action completes successfully but it's too late for the sequence.)
I've seen this problem before but it's gotten much worse within the past week. My compositions are now unusable.
On a Slack channel I received the advice to use the
$blocking: true
argument to work around a related issue with long-running nested compositions (returning a session ID instead of the result) but that seems to be a separate problem and the workaround does not help here.The text was updated successfully, but these errors were encountered: