CC-5709: Airtime Analyzer

* Fix hack for Airtime Pro
This commit is contained in:
Albert Santoni 2014-04-02 17:27:10 -04:00
parent 9c0314eaa0
commit e3757d892b
1 changed files with 3 additions and 3 deletions

View File

@ -116,11 +116,11 @@ class Application_Model_RabbitMq
//the way it is just so I don't accidentally break anything when I add the Analyzer code in. -- Albert, March 13, 2014 //the way it is just so I don't accidentally break anything when I add the Analyzer code in. -- Albert, March 13, 2014
$channel->exchange_declare($exchange, $exchangeType, false, true, $autoDeleteExchange); $channel->exchange_declare($exchange, $exchangeType, false, true, $autoDeleteExchange);
$msg = new AMQPMessage($data, array('content_type' => 'text/plain')); $msg = new AMQPMessage($jsonData, array('content_type' => 'text/plain'));
$channel->basic_publish($msg, $exchange); $channel->basic_publish($msg, $exchange);
$channel->close(); $channel->close();
$conn->close(); $conn->close();
} }