Skip to content

Commit

Permalink
RabbitMQ: fix typo in binding command (#1792)
Browse files Browse the repository at this point in the history
  • Loading branch information
glefloch authored and rnorth committed Sep 1, 2019
1 parent d9f0d73 commit b97254c
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -215,8 +215,8 @@ public RabbitMQContainer withBinding(String source, String destination, Map<Stri
values.add(asList("rabbitmqadmin", "declare", "binding",
"source=" + source,
"destination=" + destination,
"routing-key=" + routingKey,
"destination-type=" + destinationType,
"routing_key=" + routingKey,
"destination_type=" + destinationType,
"arguments=" + toJson(arguments)));
return self();
}
Expand Down

0 comments on commit b97254c

Please sign in to comment.