1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-06 06:57:39 +08:00

Ignore MultipleCollectionIncludeWarning

This commit is contained in:
Roman Kapustin 2021-03-11 22:40:35 +03:00
parent d2f943395d
commit 5a4b0174b1

View File

@ -112,6 +112,7 @@ namespace osu.Game.Database
base.OnConfiguring(optionsBuilder);
optionsBuilder
.UseSqlite(connectionString, sqliteOptions => sqliteOptions.CommandTimeout(10))
.ConfigureWarnings(w => w.Ignore(RelationalEventId.MultipleCollectionIncludeWarning))
.UseLoggerFactory(logger.Value);
}