Hi! If I start the workflow with WORKFLOW_ID_REUSE_POLICY_REJECT_DUPLICATE
options := client.StartWorkflowOptions{
WorkflowIDReusePolicy: enums.WORKFLOW_ID_REUSE_POLICY_REJECT_DUPLICATE,
...
}
Is it safe to signal workflow with only the workflowID?
c.SignalWorkflow(context.Background(),"transfer-money-workflow 298ca4ca-6d23-4980-abfc-3a7d9aaa36c0","","signalName",nil)
My problem is I am unable to pass the runner_id to the thread that will call SignalWorkflow, so I am trying to workaround the issue by only using workflowID to identify workflows.