This commit is contained in:
2025-11-30 09:49:27 +03:30
parent be42b587c1
commit 722ad88adf
+5 -1
View File
@@ -254,7 +254,11 @@ namespace xPushService.DI
// //
// Register SignalR ... // Register SignalR ...
var builder = services.AddSignalR(); var builder = services.AddSignalR(options =>
{
options.KeepAliveInterval = TimeSpan.FromSeconds(10);
options.ClientTimeoutInterval = TimeSpan.FromSeconds(10);
});
// //
// Add NewtonSoftJson Protocol ... // Add NewtonSoftJson Protocol ...