We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ce59ee commit d16050dCopy full SHA for d16050d
projects/RabbitMQ.Client/client/impl/ModelBase.cs
@@ -1077,7 +1077,7 @@ public abstract void BasicNack(ulong deliveryTag,
1077
bool multiple,
1078
bool requeue);
1079
1080
- internal void AllocatatePublishSeqNos(int count)
+ internal void AllocatePublishSeqNos(int count)
1081
{
1082
if (NextPublishSeqNo > 0)
1083
@@ -1423,7 +1423,7 @@ public void WaitForConfirmsOrDie(TimeSpan timeout)
1423
internal void SendCommands(IList<Command> commands)
1424
1425
_flowControlBlock.Wait();
1426
- AllocatatePublishSeqNos(commands.Count);
+ AllocatePublishSeqNos(commands.Count);
1427
Session.Transmit(commands);
1428
}
1429
0 commit comments