1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-10 07:13:58 -05:00

only default to IPv4 when parsing

update postgres target version to 12.9
This commit is contained in:
RaidMax
2022-02-01 14:27:16 -06:00
parent 42e884bd4d
commit 2c9d458150
2 changed files with 6 additions and 3 deletions

View File

@ -94,7 +94,7 @@ namespace IW4MAdmin.Application.Extensions
postgresqlOptions =>
{
postgresqlOptions.EnableRetryOnFailure();
postgresqlOptions.SetPostgresVersion(new Version("9.4"));
postgresqlOptions.SetPostgresVersion(new Version("12.9"));
})
.UseLoggerFactory(sp.GetRequiredService<ILoggerFactory>()).Options);
return services;