Skip to content

Commit

Permalink
Merge pull request #578 from sergeyshaykhullin/autorecovering_stackov…
Browse files Browse the repository at this point in the history
…erflow

Fix stackoverflow when call some IFullModel._Private... methods
  • Loading branch information
michaelklishin authored Mar 19, 2019
2 parents 7f99686 + cc8c774 commit 63d20f5
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -657,7 +657,7 @@ public void _Private_ExchangeBind(string destination,
bool nowait,
IDictionary<string, object> arguments)
{
_Private_ExchangeBind(destination, source, routingKey,
m_delegate._Private_ExchangeBind(destination, source, routingKey,
nowait, arguments);
}

Expand All @@ -670,7 +670,7 @@ public void _Private_ExchangeDeclare(string exchange,
bool nowait,
IDictionary<string, object> arguments)
{
_Private_ExchangeDeclare(exchange, type, passive,
m_delegate._Private_ExchangeDeclare(exchange, type, passive,
durable, autoDelete, @internal,
nowait, arguments);
}
Expand All @@ -679,7 +679,7 @@ public void _Private_ExchangeDelete(string exchange,
bool ifUnused,
bool nowait)
{
_Private_ExchangeDelete(exchange, ifUnused, nowait);
m_delegate._Private_ExchangeDelete(exchange, ifUnused, nowait);
}

public void _Private_ExchangeUnbind(string destination,
Expand All @@ -698,7 +698,7 @@ public void _Private_QueueBind(string queue,
bool nowait,
IDictionary<string, object> arguments)
{
_Private_QueueBind(queue, exchange, routingKey,
m_delegate._Private_QueueBind(queue, exchange, routingKey,
nowait, arguments);
}

Expand Down

0 comments on commit 63d20f5

Please sign in to comment.