aws-swf icon indicating copy to clipboard operation
aws-swf copied to clipboard

Node.js helpers to access the Amazon SWF API

Results 13 aws-swf issues
Sort by recently updated
recently updated
newest added

I've run into issue that instance of my SWF decider got response from AWS saying: `ValidationException: Specified token has exceeded its maximum lifetime ` It happened after around 4 days...

I'd like access to APIs for cancelling a WorkflowExecution (i.e. [requestCancelWorkflowExecution](http://docs.aws.amazon.com/AWSJavaScriptSDK/latest/AWS/SWF.html#requestCancelWorkflowExecution-property)) and to test the EventList whether a cancel has been requested (i.e. a `WorkflowExecutionCancelRequested` event has been recorded). Specifically,...

we are experiencing a behaviour in our decider (and activity) worker where a new `pollForDecisionTask` connection is created (identified from aws client logging) every time a new workflow instance is...

Most of the APIs in the library consistently follow JavaScript naming conventions and uses camel case (parameter and method names). However, several of the classes have a mixture of snake-case...

The decisionTask.eventList object does not have any api for the reason of failure when an activity fails.

Thanks a lot for the library and default activities - works great. One question, which I was not able to do yet... Is it possible to define a loop based...

Would like to get this lib on the latest sdk from AWS... updated lodash while I was at it. If you accept this, would it be possible to push out...

Refer https://github.com/neyric/aws-swf/blob/master/lib/decision-response.js#L262 The start_timer method uses the "name" parameter as control information. Instead, we should call it "control". Reason: We can add a JSON message to this parameter, which will...

If you have a workflow execution history more than what is returned in a single getHistory request, AWS returns with a nextPageToken property. This isn't used by workflow-execution.js to get...

I notice that EventList instances have a private `_events` property that contains the raw event history provided by SWF. It would be very useful to me if this was exposed,...