Maxim Fateev
Maxim Fateev
I don't think that approach that doesn't create a span on replay would work. The problem is that a newly executed code can create a child span and needs a...
I think we should keep the current logic of applying `failWorkflowExceptionTypes` to any unexpected error from the control code. But for situations that we know are intermittent we should try...
Java supports this through `TestEnvironmentOptions.setInitialTime`.
I see two separate questions here: 1. Do we merge options at all, or are they always replaced completely? 2. What is the precedence of merging/replacement? I personally think we...
Would you specify the currently implemented rules for the 6 sources of options and what is the logic behind them?
Similar request: https://community.temporal.io/t/fail-workflow-form-updatemethod/11441
What is the purpose of populating the field in this case? The child is clearly linked to the parent that already has the identity field populated.
It is better to keep information normalized. A child workflow WorkflowExecutionStarted contains information about the parent including [parent_initiated_event_id](https://github.com/temporalio/api/blob/0a9dcf0be2a1383bf9a613f47a39cd09119e0a34/temporal/api/history/v1/message.proto#L59). The parent contains ChildWorkflowExecutionInitiatedEvent with that id, which contains [workflow_task_completed_event_id](https://github.com/temporalio/api/blob/master/temporal/api/history/v1/message.proto#L578) pointing to...
As a first step, I would write an adapter to expose all airflow tasks and sensors as Temporal activities.
I see. Assuming that JSON that is passed to the argument is valid for the protobuf to deserialize it could work.