From f64f6016766124c93c463ebf5af23f1fcc8f8ede 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 833d72f9..8f0a2bab 100644 --- a/src/Monolog/Handler/AmqpHandler.php +++ b/src/Monolog/Handler/AmqpHandler.php @@ -65,7 +65,7 @@ class AmqpHandler extends AbstractProcessingHandler 0, array( 'delivery_mode' => 2, - 'Content-type' => 'application/json', + 'content_type' => 'application/json', ) ); } else {