File tree Expand file tree Collapse file tree 1 file changed +1
-12
lines changed
src/Umbraco.Web.Common/DependencyInjection Expand file tree Collapse file tree 1 file changed +1
-12
lines changed Original file line number Diff line number Diff line change @@ -326,20 +326,9 @@ public static IUmbracoBuilder AddHelpers(this IUmbracoBuilder builder)
326
326
return builder ;
327
327
}
328
328
329
- // TODO: Does this need to exist and/or be public?
329
+ [ Obsolete ( "This is not necessary any more. This will be removed in v17" ) ]
330
330
public static IUmbracoBuilder AddWebServer ( this IUmbracoBuilder builder )
331
331
{
332
- // TODO: We need to figure out why this is needed and fix those endpoints to not need them, we don't want to change global things
333
- // If using Kestrel: https://stackoverflow.com/a/55196057
334
- builder . Services . Configure < KestrelServerOptions > ( options =>
335
- {
336
- options . AllowSynchronousIO = true ;
337
- } ) ;
338
- builder . Services . Configure < IISServerOptions > ( options =>
339
- {
340
- options . AllowSynchronousIO = true ;
341
- } ) ;
342
-
343
332
return builder ;
344
333
}
345
334
You can’t perform that action at this time.
0 commit comments