From f4b89ac754ae64ef63506a44d60c358359295734 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Nahan Date: Tue, 8 Mar 2016 13:24:58 +0100 Subject: [PATCH] Fix content_type property The property "Content-type" does not exist. Use "content_type" instead. Work for RabbitMQ. --- src/Monolog/Handler/AmqpHandler.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Monolog/Handler/AmqpHandler.php b/src/Monolog/Handler/AmqpHandler.php index 2f79c1c0..95a91fcd 100644 --- a/src/Monolog/Handler/AmqpHandler.php +++ b/src/Monolog/Handler/AmqpHandler.php @@ -64,7 +64,7 @@ class AmqpHandler extends AbstractProcessingHandler 0, array( 'delivery_mode' => 2, - 'Content-type' => 'application/json', + 'content_type' => 'application/json', ) ); } else {