You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
decisionTask.eventList.failed(activityId) returns false when this activityId is in fact failed.
I tried to trace the code through the debugger, and the way it is implemented right now, activityIdFor in event-list.js on line 19 receives scheduledEventId === undefined
I was able to fix this issue by doing this:
has_schedule_activity_task_failed: function (activityId) {
return this._has_eventType_for_activityId(activityId, 'ScheduleActivityTaskFailed');
},
The text was updated successfully, but these errors were encountered:
decisionTask.eventList.failed(activityId) returns false when this activityId is in fact failed.
I tried to trace the code through the debugger, and the way it is implemented right now, activityIdFor in event-list.js on line 19 receives scheduledEventId === undefined
I was able to fix this issue by doing this:
The text was updated successfully, but these errors were encountered: