10000 Sync with upstream · somnathzankar/rabbitmq-tutorials@27df5ef · GitHub
[go: up one dir, main page]

Skip to content

Commit 27df5ef

Browse files
Sync with upstream
2 parents b6b16ea + 7358fc4 commit 27df5ef

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

perl/README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,13 @@ For tutorial six UUID::Tiny needs to be installed.
1515

1616
cpan -i UUID::Tiny
1717

18+
There are known problems with the the Net::RabbitFoot module:
19+
20+
* The MooseX::AttributeHelpers dependency has been deprecated and no longer builds on Perl 5.18
21+
* The library tests fail on 32bit systems
22+
1823
On Ubuntu:
19-
24+
2025
sudo apt-get install make libclass-data-inheritable-perl libtest-deep-perl libmoosex-app-cmd-perl libcoro-perl libjson-xs-perl libxml-libxml-perl libconfig-any-perl libmoosex-attributehelpers-perl libmoosex-configfromfile-perl libtest-exception-perl libfile-sharedir-perl libreadonly-xs-perl libuuid-tiny-perl
2126
sudo cpan -i Net::RabbitFoot
2227

php/receive_logs_direct.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
echo ' [*] Waiting for logs. To exit press CTRL+C', "\n";
2424

2525
$callback = function($msg){
26-
echo ' [x] ',$msg->delivery_info['routing_key'], ':', $msg->body, "\n";
26+
echo ' [x] '.$msg->delivery_info['routing_key'].':'.$msg->body."\n";
2727
};
2828

2929
$channel->basic_consume($queue_name, '', false, true, false, false, $callback);
@@ -35,4 +35,4 @@
3535
$channel->close();
3636
$connection->close();
3737

38-
?>
38+
?>

0 commit comments

Comments
 (0)
0