Skip to content

Commit f504bdb

Browse files
committed
gh-199 Fix typo
Signed-off-by: Victor Chang <[email protected]>
1 parent 8ff68fa commit f504bdb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/InformaticsGateway/Logging/Log.500.ExportService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ public static partial class Log
5050
public static partial void ErrorAcknowledgingMessageWithRetry(this ILogger logger, Exception ex, TimeSpan timeSpan, int retryCount);
5151

5252
[LoggerMessage(EventId = 509, Level = LogLevel.Information, Message = "Sending acknowledgment.")]
53-
public static partial void SendingAckowledgement(this ILogger logger);
53+
public static partial void SendingAcknowledgement(this ILogger logger);
5454

5555
[LoggerMessage(EventId = 510, Level = LogLevel.Error, Message = "Error publishing message. Waiting {timeSpan} before next retry. Retry attempt {retryCount}.")]
5656
public static partial void ErrorPublishingExportCompleteEventWithRetry(this ILogger logger, Exception ex, TimeSpan timeSpan, int retryCount);

src/InformaticsGateway/Services/Export/ExportServiceBase.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ private void ReportingActionBlock(ExportRequestDataMessage exportRequestData)
281281
})
282282
.Execute(() =>
283283
{
284-
_logger.SendingAckowledgement();
284+
_logger.SendingAcknowledgement();
285285
_messageSubscriber.Acknowledge(jsonMessage);
286286
});
287287

0 commit comments

Comments
 (0)