1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-05 21:18:13 -05:00

queue batch size of 5

This commit is contained in:
Kyle Spearrin 2017-12-14 21:06:13 -05:00
parent 992fac1328
commit 39f6516ca8

View File

@ -12,6 +12,8 @@ namespace Bit.EventsProcessor
config.UseDevelopmentSettings();
}
config.Queues.BatchSize = 5;
var host = new JobHost(config);
host.RunAndBlock();
}