Skip to content

Commit 8abe915

Browse files
committed
Always allow Content-Type
1 parent 6dd432b commit 8abe915

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/isc/rabbitmq/API.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ public void sendMessage(byte[] msg) throws Exception {
7777
}
7878

7979
public void sendMessageToQueue(String queue, byte[] msg) throws Exception {
80-
_channel.basicPublish(_exchange, queue, null, msg);
80+
sendMessageToQueue(queue, msg, null, null);
8181
}
8282

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

0 commit comments

Comments
 (0)