improvements

This commit is contained in:
Loretta 2024-08-26 16:35:06 +02:00
parent 70faba1855
commit b4e7f617ec
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ namespace TIAMWebApp.Shared.Application.Utility
await _hubConnection.StartAsync();
if (_hubConnection.State != HubConnectionState.Connected)
await TaskHelper.WaitToAsync(() => _hubConnection.State == HubConnectionState.Connected, 3000, 100);
await TaskHelper.WaitToAsync(() => _hubConnection.State == HubConnectionState.Connected, 10000, 10, 25);
}
public async Task StopConnection()