Skip to content

Commit 63d20f5

Browse files
Merge pull request #578 from sergeyshaykhullin/autorecovering_stackoverflow
Fix stackoverflow when call some IFullModel._Private... methods
2 parents 7f99686 + cc8c774 commit 63d20f5

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

projects/client/RabbitMQ.Client/src/client/impl/AutorecoveringModel.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -657,7 +657,7 @@ public void _Private_ExchangeBind(string destination,
657657
bool nowait,
658658
IDictionary<string, object> arguments)
659659
{
660-
_Private_ExchangeBind(destination, source, routingKey,
660+
m_delegate._Private_ExchangeBind(destination, source, routingKey,
661661
nowait, arguments);
662662
}
663663

@@ -670,7 +670,7 @@ public void _Private_ExchangeDeclare(string exchange,
670670
bool nowait,
671671
IDictionary<string, object> arguments)
672672
{
673-
_Private_ExchangeDeclare(exchange, type, passive,
673+
m_delegate._Private_ExchangeDeclare(exchange, type, passive,
674674
durable, autoDelete, @internal,
675675
nowait, arguments);
676676
}
@@ -679,7 +679,7 @@ public void _Private_ExchangeDelete(string exchange,
679679
bool ifUnused,
680680
bool nowait)
681681
{
682-
_Private_ExchangeDelete(exchange, ifUnused, nowait);
682+
m_delegate._Private_ExchangeDelete(exchange, ifUnused, nowait);
683683
}
684684

685685
public void _Private_ExchangeUnbind(string destination,
@@ -698,7 +698,7 @@ public void _Private_QueueBind(string queue,
698698
bool nowait,
699699
IDictionary<string, object> arguments)
700700
{
701-
_Private_QueueBind(queue, exchange, routingKey,
701+
m_delegate._Private_QueueBind(queue, exchange, routingKey,
702702
nowait, arguments);
703703
}
704704

0 commit comments

Comments
 (0)