diff --git a/storage/interceptable_repository.go b/storage/interceptable_repository.go index c27b38847..d1fdcde79 100644 --- a/storage/interceptable_repository.go +++ b/storage/interceptable_repository.go @@ -311,15 +311,6 @@ func (ir *queryScopedInterceptableRepository) UpdateLabels(ctx context.Context, return nil, err } - operation, found := opcontext.Get(ctx) - if found && operation.ResourceID != objectID && operation.ID != objectID && objectType != types.OperationType { - operation.TransitiveResources = append(operation.TransitiveResources, &types.RelatedType{ - ID: objectID, - Type: objectType, - OperationType: types.UPDATE, - }) - } - return obj, nil }