Skip to content

Commit

Permalink
Always allow Content-Type
Browse files Browse the repository at this point in the history
  • Loading branch information
eduard93 committed Sep 19, 2018
1 parent 6dd432b commit 8abe915
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/isc/rabbitmq/API.java
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public void sendMessage(byte[] msg) throws Exception {
}

public void sendMessageToQueue(String queue, byte[] msg) throws Exception {
_channel.basicPublish(_exchange, queue, null, msg);
sendMessageToQueue(queue, msg, null, null);
}

public void sendMessageToQueue(String queue, byte[] msg, String correlationId, String messageId) throws Exception {
Expand Down

0 comments on commit 8abe915

Please sign in to comment.