Skip to content

Commit

Permalink
Merge pull request #1494 from Azure/lianwei/release
Browse files Browse the repository at this point in the history
Hotfix to 1.13.0
  • Loading branch information
vicancy authored Nov 9, 2021
2 parents 9c5cb2e + da11f3c commit 2ceca1c
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,8 @@ public async Task<bool> WriteAckableMessageAsync(ServiceMessage serviceMessage,
var task = _ackHandler.CreateAck(out var id, cancellationToken);
ackableMessage.AckId = id;

await WriteToScopedOrRandomAvailableConnection(serviceMessage);
// There is no need to write ackable message to sticky connections
await WriteWithRetry(serviceMessage, null, ServiceConnections);

var status = await task;
switch (status)
Expand Down

0 comments on commit 2ceca1c

Please sign in to comment.