Open
Description
I have a workflow where I launch a child workflow. I have something roughly like
try {
} catch (e: CancellationException) {
Workflow.newUntypedExternalWorkflowStub(childWorkflowId).cancel()
logger.info("Cancel successful")
}
but even when I confirm it gets to the log line, the child workflow does not actually end up cancelled.
Based on this, there is no way to wait.