132
133
if currentRow.RunID.String() != request.PreviousRunID {
134
>
return nil, m.extractCurrentWorkflowConflictError(
execution.go
135
>
currentRow,
136
>
fmt.Sprintf(
137
>
"Workflow execution creation condition failed. workflow ID: %v, current run ID: %v, request run ID: %v",
138
>
workflowID,
139
>
currentRow.RunID.String(),
140
>
request.PreviousRunID,
141
>
),
142
>
)
143
>
}
144
if request.PreviousLastWriteVersion != currentRow.LastWriteVersion {
145
return nil, m.extractCurrentWorkflowConflictError(