Skip to content

Commit

Permalink
Add capture metrics to viewer.
Browse files Browse the repository at this point in the history
  • Loading branch information
bitbound committed May 3, 2023
1 parent a4e6e55 commit f72d6da
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Server/API/AgentUpdateController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public class AgentUpdateController : ControllerBase
private readonly IServiceHubSessionCache _serviceSessionCache;

public AgentUpdateController(IWebHostEnvironment hostingEnv,
IDataService dataService,
IDataService dataService,
IApplicationConfig appConfig,
IServiceHubSessionCache serviceSessionCache,
IHubContext<AgentHub> agentHubContext)
Expand Down
1 change: 1 addition & 0 deletions Server/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,7 @@
services.AddSignalR(options =>
{
options.EnableDetailedErrors = builder.Environment.IsDevelopment();
options.MaximumParallelInvocationsPerClient = 5;
options.MaximumReceiveMessageSize = 100_000;
})
.AddJsonProtocol(options =>
Expand Down

0 comments on commit f72d6da

Please sign in to comment.