Skip to content

Commit

Permalink
Fixed documentation layout
Browse files Browse the repository at this point in the history
  • Loading branch information
edmondop committed Apr 18, 2023
1 parent f509d36 commit b4d8ee5
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions internal/workflow.go
Original file line number Diff line number Diff line change
Expand Up @@ -944,9 +944,11 @@ func (wc *workflowEnvironmentInterceptor) ExecuteChildWorkflow(ctx Context, chil

// WorkflowInfo information about currently executing workflow
type WorkflowInfo struct {
WorkflowExecution WorkflowExecution
OriginalRunID string // The original runID before resetting. Using it instead of current runID can make workflow decision determinstic after reset. See also FirstRunId
FirstRunID string // The very first original RunId of the current Workflow Execution preserved along the chain of ContinueAsNew, Retry, Cron and Reset. Identifies the whole Runs chain of Workflow Execution.
WorkflowExecution WorkflowExecution
// The original runID before resetting. Using it instead of current runID can make workflow decision deterministic after reset. See also FirstRunId
OriginalRunID string
// The very first original RunId of the current Workflow Execution preserved along the chain of ContinueAsNew, Retry, Cron and Reset. Identifies the whole Runs chain of Workflow Execution.
FirstRunID string
WorkflowType WorkflowType
TaskQueueName string
WorkflowExecutionTimeout time.Duration
Expand Down

0 comments on commit b4d8ee5

Please sign in to comment.