Hi, I have created child activity in java where it runs asynchronous and doesn’t depend on the parent using the parameter “parent_close_policy” as abandon but when parent has errors and when I want to reset it, It doesn’t allow me because in the UI under relationship tab the child is still showing running but it shows completed in workflow tab. Can anyone help me on this?
Hi @Veeresh
We have an open issue for this Reset is disabled for closed workflows that start a child workflow in abandon mode · Issue #2098 · temporalio/ui · GitHub , feel free to comment on it.
I think the best way for now is to use the SDK to reset the workflow
client.getWorkflowServiceStubs().blockingStub().resetWorkflowExecution..
or temporal cli
temporal workflow reset ...
Antonio