DynamicWorkflow not taking in account WorkflowImplementationOptions
WorkflowImplementationOptions options =
WorkflowImplementationOptions.newBuilder()
.setFailWorkflowExceptionTypes(NullPointerException.class)
.build();
worker.registerWorkflowImplementationTypes(options, DynamicGreetingWorkflowImpl.class);
throwing NullPointerException inside Dynamic workflow (workflow that implements DynamicWorkflow interface) does not take in account WorkflowImplementationOptions and will not fail when NPE is thrown. This works fine for "normal" workflow impls which would fail at this point.
I ran into this bug today. Any ETA for a fix?
@drewhoskins-stripe Not yet, Drew. But I will put it up for prioritization or may take it during the next Bulk Bug Squash that I am able to do.
Thanks!
@Spikhalskiy Any updates on this one?
No update at this time
I have the same problem, do we have a plan to solve it?