Commit 9703b496 authored by Savorboard's avatar Savorboard

Fix spell

parent 0a1d6f80
...@@ -130,7 +130,7 @@ namespace DotNetCore.CAP ...@@ -130,7 +130,7 @@ namespace DotNetCore.CAP
} }
catch (Exception e) catch (Exception e)
{ {
_logger.LogError(e, "An exception occurred when storage received message. Message:'{0}'.", messageContext); _logger.LogError(e, "An exception occurred when store received message. Message:'{0}'.", messageContext);
client.Reject(); client.Reject();
......
...@@ -70,8 +70,8 @@ namespace DotNetCore.CAP ...@@ -70,8 +70,8 @@ namespace DotNetCore.CAP
/// <summary> /// <summary>
/// Execute message consumption once. /// Execute message consumption once.
/// </summary> /// </summary>
/// <param name="message">the message rececived of <see cref="CapReceivedMessage"/></param> /// <param name="message">the message received of <see cref="CapReceivedMessage"/></param>
/// <returns>Item1 is need still restry, Item2 is executed result.</returns> /// <returns>Item1 is need still retry, Item2 is executed result.</returns>
private async Task<(bool, OperateResult)> ExecuteWithoutRetryAsync(CapReceivedMessage message) private async Task<(bool, OperateResult)> ExecuteWithoutRetryAsync(CapReceivedMessage message)
{ {
if (message == null) if (message == null)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment