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
com.uber.cadence.internal.external.ManualActivityCompletionClientImpl#fail method does not set activityId on the instance of RespondActivityTaskFailedByIDRequest, which causes com.uber.cadence.internal.testservice.ActivityId#ActivityId(java.lang.String, com.uber.cadence.WorkflowExecution, java.lang.String) constructor to throw NullPointerException
The text was updated successfully, but these errors were encountered:
Hey, any updates on this?
it just requires setting activityId in 'else' section of fail() method
public void fail(Throwable failure) {
...
if (activityId == null) {
throw new IllegalArgumentException("Either activity id or task token are required");
}
request.setActivityID(activityId);
com.uber.cadence.internal.external.ManualActivityCompletionClientImpl#fail
method does not set activityId on the instance ofRespondActivityTaskFailedByIDRequest
, which causescom.uber.cadence.internal.testservice.ActivityId#ActivityId(java.lang.String, com.uber.cadence.WorkflowExecution, java.lang.String)
constructor to throwNullPointerException
The text was updated successfully, but these errors were encountered: