Reduce JobService.MaxHubUpdatesPerSecond to 1

This commit is contained in:
Jordan Dominion
2023-12-27 10:40:55 -05:00
parent 9ddda5b866
commit 77fa5588d8
+1 -1
View File
@@ -30,7 +30,7 @@ namespace Tgstation.Server.Host.Jobs
/// <summary>
/// The maximum rate at which hub clients can receive updates.
/// </summary>
const int MaxHubUpdatesPerSecond = 4;
const int MaxHubUpdatesPerSecond = 1;
/// <summary>
/// The <see cref="IHubContext"/> for the <see cref="JobsHub"/>.