Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
lukebakken committed Sep 18, 2024
1 parent 5c1923c commit 35cc6f6
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions RabbitMQ.AMQP.Client/Impl/AmqpBindingSpecification.cs
Original file line number Diff line number Diff line change
Expand Up @@ -52,12 +52,12 @@ public string BindingPath
public async Task BindAsync()
{
var kv = new Map
{
{ "source", _sourceName },
{ "binding_key", _routingKey },
{ "arguments", ArgsToMap() },
{ _toQueue ? "destination_queue" : "destination_exchange", _destinationName }
};
{
{ "source", _sourceName },
{ "binding_key", _routingKey },
{ "arguments", ArgsToMap() },
{ _toQueue ? "destination_queue" : "destination_exchange", _destinationName }
};

string path = $"/{Consts.Bindings}";
string method = AmqpManagement.Post;
Expand Down

0 comments on commit 35cc6f6

Please sign in to comment.