Compare commits

...

2 Commits

Author SHA1 Message Date
Loretta 8d9b3bf072 Merge branch 'master' of http://git2.aycode.com/Adam/TourIAm 2024-08-26 16:35:37 +02:00
Loretta b4e7f617ec improvements 2024-08-26 16:35:06 +02:00
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()