1
0
mirror of https://github.com/Seldaek/monolog.git synced 2025-08-06 05:07:36 +02:00

Merge pull request #740 from macintoshplus/macintoshplus-fix-content-type

Fix content_type for AMQP Message
This commit is contained in:
Jordi Boggiano
2016-03-10 12:37:00 +01:00
2 changed files with 2 additions and 2 deletions

View File

@@ -65,7 +65,7 @@ class AmqpHandler extends AbstractProcessingHandler
0,
array(
'delivery_mode' => 2,
'Content-type' => 'application/json',
'content_type' => 'application/json',
)
);
} else {

View File

@@ -65,7 +65,7 @@ class AmqpHandlerTest extends TestCase
0,
array(
'delivery_mode' => 2,
'Content-type' => 'application/json',
'content_type' => 'application/json',
),
);