1
0
mirror of https://github.com/bitwarden/server.git synced 2024-12-31 18:27:49 +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 =>
{
options.ApplicationMaxBufferSize = 20; // client => server messages are not even used
options.TransportMaxBufferSize = 2048;
options.ApplicationMaxBufferSize = 2048; // client => server messages are not even used
options.TransportMaxBufferSize = 4096;
}));
}