From 85ff0d7abcf59d170322ffd4e9399e587ddc2c5e Mon Sep 17 00:00:00 2001 From: Sipke Schoorstra Date: Tue, 20 May 2025 11:52:05 +0200 Subject: [PATCH] Fix spelling in hosted service log messages (#6654) --- .../HostedServices/BackgroundCommandSenderHostedService.cs | 2 +- .../HostedServices/BackgroundEventPublisherHostedService.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/common/Elsa.Mediator/HostedServices/BackgroundCommandSenderHostedService.cs b/src/common/Elsa.Mediator/HostedServices/BackgroundCommandSenderHostedService.cs index 8b4a0db0c..e395f3484 100644 --- a/src/common/Elsa.Mediator/HostedServices/BackgroundCommandSenderHostedService.cs +++ b/src/common/Elsa.Mediator/HostedServices/BackgroundCommandSenderHostedService.cs @@ -67,7 +67,7 @@ public class BackgroundCommandSenderHostedService : BackgroundService } catch (Exception e) { - _logger.LogError(e, "An unhandled exception occured while processing the queue"); + _logger.LogError(e, "An unhandled exception occurred while processing the queue"); } } } diff --git a/src/common/Elsa.Mediator/HostedServices/BackgroundEventPublisherHostedService.cs b/src/common/Elsa.Mediator/HostedServices/BackgroundEventPublisherHostedService.cs index 67e43ddfb..3a10e8403 100644 --- a/src/common/Elsa.Mediator/HostedServices/BackgroundEventPublisherHostedService.cs +++ b/src/common/Elsa.Mediator/HostedServices/BackgroundEventPublisherHostedService.cs @@ -73,7 +73,7 @@ public class BackgroundEventPublisherHostedService : BackgroundService } catch (Exception e) { - _logger.LogError(e, "An unhandled exception occured while processing the queue"); + _logger.LogError(e, "An unhandled exception occurred while processing the queue"); } } }