1
0
mirror of https://github.com/bitwarden/server.git synced 2025-01-18 21:11:21 +01:00

increase buffers

This commit is contained in:
Kyle Spearrin 2018-08-24 22:12:51 -04:00
parent 5ecd45abd6
commit 6fa49ff65b

View File

@ -126,8 +126,8 @@ namespace Bit.Notifications
{ {
app.UseSignalR(routes => routes.MapHub<NotificationsHub>("/hub", options => app.UseSignalR(routes => routes.MapHub<NotificationsHub>("/hub", options =>
{ {
options.ApplicationMaxBufferSize = 20; // client => server messages are not even used options.ApplicationMaxBufferSize = 2048; // client => server messages are not even used
options.TransportMaxBufferSize = 2048; options.TransportMaxBufferSize = 4096;
})); }));
} }