We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe291bc commit 24c99f0Copy full SHA for 24c99f0
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