Skip to content

Commit

Permalink
[release/9.0] Don't throw on non-transactional migration operation wa…
Browse files Browse the repository at this point in the history
…rning. (#34830)

Fixes #34829
  • Loading branch information
AndriySvyryd authored Oct 7, 2024
1 parent 3c29800 commit 1c9c8fa
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -463,8 +463,7 @@ public static CoreOptionsExtension WithDefaultWarningConfiguration(CoreOptionsEx
.TryWithExplicit(RelationalEventId.IndexPropertiesMappedToNonOverlappingTables, WarningBehavior.Throw)
.TryWithExplicit(RelationalEventId.ForeignKeyPropertiesMappedToUnrelatedTables, WarningBehavior.Throw)
.TryWithExplicit(RelationalEventId.StoredProcedureConcurrencyTokenNotMapped, WarningBehavior.Throw)
.TryWithExplicit(RelationalEventId.PendingModelChangesWarning, WarningBehavior.Throw)
.TryWithExplicit(RelationalEventId.NonTransactionalMigrationOperationWarning, WarningBehavior.Throw));
.TryWithExplicit(RelationalEventId.PendingModelChangesWarning, WarningBehavior.Throw));

/// <summary>
/// Information/metadata for a <see cref="RelationalOptionsExtension" />.
Expand Down

0 comments on commit 1c9c8fa

Please sign in to comment.