diff --git a/FastGithub.HttpServer/KestrelServerOptionsExtensions.cs b/FastGithub.HttpServer/KestrelServerOptionsExtensions.cs index c3dfaac..3493e98 100644 --- a/FastGithub.HttpServer/KestrelServerOptionsExtensions.cs +++ b/FastGithub.HttpServer/KestrelServerOptionsExtensions.cs @@ -23,6 +23,8 @@ namespace FastGithub public static void NoLimit(this KestrelServerOptions kestrel) { kestrel.Limits.MaxRequestBodySize = null; + kestrel.Limits.MinResponseDataRate = null; + kestrel.Limits.MinRequestBodyDataRate = null; } ///