func (ms *MutableStateImpl) DeletePendingChildExecution(
initiatedEventID int64,
if prev, ok := ms.pendingChildExecutionInfoIDs[initiatedEventID]; ok {
ms.approximateSize -= prev.Size() + int64SizeBytes
delete(ms.pendingChildExecutionInfoIDs, initiatedEventID)
} else {
ms.logError(
fmt.Sprintf("unable to find child workflow event ID: %v in mutable state", initiatedEventID),