I think that we should check if @event is null in line 102 in OnResurrected method
var @event = taskType.GetEvent("Completed");
the same as it's checked in 53 line in Handle<TaskExecutionRequested>.Handle(TaskExecutionRequested message)
if(@event != null) {
request = message;
because not all events contains Completed method.
Comments: Any suggestions how to fix/workaround this issue?
var @event = taskType.GetEvent("Completed");
the same as it's checked in 53 line in Handle<TaskExecutionRequested>.Handle(TaskExecutionRequested message)
if(@event != null) {
request = message;
because not all events contains Completed method.
Comments: Any suggestions how to fix/workaround this issue?