We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8f40bc7 + 24c99f0 commit ae94a12Copy full SHA for ae94a12
PathfinderHonorManager/Startup.cs
@@ -120,7 +120,8 @@ public void ConfigureServices(IServiceCollection services)
120
});
121
services
122
.AddDbContext<PathfinderContext>(options =>
123
- options.UseNpgsql(Configuration.GetConnectionString("PathfinderCS")));
+ options.UseNpgsql(Configuration.GetConnectionString("PathfinderCS"),
124
+ npgsqlOptions => npgsqlOptions.CommandTimeout(30)));
125
126
.AddAutoMapper(typeof(AutoMapperConfig));
127
0 commit comments