Explorar el Código

SERVER - backlog setting

Nick-PRSDigital@bitbucket.org hace 2 años
padre
commit
9bc1314b08
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      InABox.Server/Rest/RestListener.cs

+ 1 - 1
InABox.Server/Rest/RestListener.cs

@@ -572,7 +572,7 @@ namespace InABox.API
             host = Host.Create();
 
             host.Handler(new RestHandlerBuilder(notifier?.Port))
-                .Defaults();
+                .Defaults().Backlog(1024);
         }
     }
 }