From 3247ba17b81ce193aefa316e4ce659599157cbae Mon Sep 17 00:00:00 2001 From: luxick Date: Thu, 12 Mar 2020 22:09:57 +0100 Subject: [PATCH] Remove delay filter --- EstusShots.Server/Startup.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/EstusShots.Server/Startup.cs b/EstusShots.Server/Startup.cs index 67711ca..71e922a 100644 --- a/EstusShots.Server/Startup.cs +++ b/EstusShots.Server/Startup.cs @@ -32,7 +32,10 @@ namespace EstusShots.Server opt.UseSqlite(Configuration.GetConnectionString("Sqlite")); }); services.AddAutoMapper(typeof(Startup)); - services.AddControllers(options => { options.Filters.Add(typeof(DebugDelayFilter)); }) + services.AddControllers(options => + { + // options.Filters.Add(typeof(DebugDelayFilter)); + }) .AddJsonOptions(options => { options.JsonSerializerOptions.PropertyNameCaseInsensitive = true;