Merge branch '1.9.1' into devel

Conflicts:
	airtime_mvc/library/php-amqplib/demo/amqp_publisher.php
This commit is contained in:
martin 2011-09-12 17:56:59 -04:00
commit 386e966080
4 changed files with 73 additions and 19 deletions

View file

@ -13,7 +13,8 @@ $PORT = 5672;
$USER = 'guest';
$PASS = 'guest';
$VHOST = '/';
$EXCHANGE = 'airtime-pypo';
$EXCHANGE = 'airtime-schedule';
$QUEUE = 'msgs';
$conn = new AMQPConnection($HOST, $PORT, $USER, $PASS);
@ -30,4 +31,5 @@ $ch->basic_publish($msg, $EXCHANGE);
echo "Sent message '".$msg_body."'\n";
$ch->close();
$conn->close();
?>