Bowei Xu
Bowei Xu
ES support "must_not exists" query so that one can use SQL like `select * from t where unimportantField = missing` or similar syntax to return all records without `unimportantField` Will...
I have interface ``` type ( StartWorkflowOptions = internal.StartWorkflowOptions StartWorkflow(ctx context.Context, options StartWorkflowOptions, workflow interface{}, args ...interface{}) (*workflow.Execution, error) ) ``` The generated mock is: ``` func (_m *Client) StartWorkflow(ctx...
Currently there is no easy way to test two running workflow interaction in the workflow tests. Need to add these for SignalExternalWorkflow, CancelExternalWorkflow etc.
Currently user has to set DataConvert separate in client and worker option. We should create encoded.SetDefaultDataConverter to make it easier
It seems `WorkflowReplayer.replayWorkflowExecutionFromResource` cannot detect non-deterministic change for the last decision. Repro workflow: ``` public static class TestGetVersionAddedImpl implements TestWorkflow1 { @Override public String execute(String taskList) { Workflow.sleep(10); // This...