4688
}
4689
if ai.StartedClock == nil {
4690
>
// StartedClock is nil when the activity is not currently started (e.g. in retry backoff)
mutable_state_impl.go
4691
>
// or was started before this feature was deployed. Skip cancel command.
4692
>
ms.logger.Debug("Skipping worker cancel command: activity not currently started",
4693
>
tag.WorkflowNamespaceID(wfKey.NamespaceID),
4694
>
tag.WorkflowID(wfKey.WorkflowID),
4695
>
tag.WorkflowRunID(wfKey.RunID),
4696
>
tag.WorkflowScheduledEventID(ai.ScheduledEventId),
4697
>
)
4698
>
continue
4699
}
4700