diff --git a/common/reconciliation/invariant/inactiveDomainExists.go b/common/reconciliation/invariant/inactiveDomainExists.go index 3dd6244efa1..796992f5c16 100644 --- a/common/reconciliation/invariant/inactiveDomainExists.go +++ b/common/reconciliation/invariant/inactiveDomainExists.go @@ -82,7 +82,7 @@ func (idc *inactiveDomainExists) Check( CheckResultType: CheckResultTypeCorrupted, InvariantName: idc.Name(), Info: "failed check: domain is not active", - InfoDetails: err.Error(), + InfoDetails: "The domain has been deprecated or deleted", } } diff --git a/service/worker/scanner/executions/types.go b/service/worker/scanner/executions/types.go index b8e7bb8e316..c2e6f888bd0 100644 --- a/service/worker/scanner/executions/types.go +++ b/service/worker/scanner/executions/types.go @@ -100,9 +100,7 @@ func (st ScanType) ToInvariants(collections []invariant.Collection) []InvariantF switch collection { case invariant.CollectionDomain: fns = append(fns, invariant.NewInactiveDomainExists) - case invariant.CollectionHistory: - fns = append(fns, invariant.NewHistoryExists) case invariant.CollectionMutableState: fns = append(fns, invariant.NewOpenCurrentExecution)