Skip to content

Commit

Permalink
Update PushNotificationSynchronizerTask.cs
Browse files Browse the repository at this point in the history
Fixed misspelling
  • Loading branch information
OlegoO authored Jul 22, 2024
1 parent 6cab8ed commit ccbfd88
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ protected override async Task ExecuteAsync(CancellationToken stoppingToken)
{
if (_hubConnection.State == HubConnectionState.Disconnected)
{
//Wait until the platform being started to be able connect to the SignalR hub
// Wait until the platform is started to be able to connect to the SignalR hub
try
{
await _hubConnection.StartAsync(stoppingToken);
Expand All @@ -61,8 +61,8 @@ protected override async Task ExecuteAsync(CancellationToken stoppingToken)
}
catch (Exception ex)
{
//Wait until platform is started
_logger.LogError(ex, "Could not starts connection to the server {HubUrl}", _options.HubUrl);
// Raise the error to the log
_logger.LogError(ex, "Could not start the connection to the server {HubUrl}", _options.HubUrl);
}
}
await Task.Delay(1000);
Expand Down

0 comments on commit ccbfd88

Please sign in to comment.