Open diegoaguilar opened 9 years ago
Hi @diegoaguilar. Have you managed to figure this out?
@WooDzu kind of, however I'd appreciate your guide and comments
Well, I'm actually facing the same or similar issue. Have added extra
connection.on('error', function (e) { console.log('AMQP', e.code, e.message); });
and what I'm getting is:
AMQP 404 NOT_FOUND - no exchange 'my_messages' in vhost '/'
The only difference is that I create queue after exchange.
I'm trying a RabbitMQ first test with Node.js connection module, I wanted to try first direct exchange so I got both a server where I'm also trying to listen to messages and a publisher script.
Server:
Publisher:
So, from my understanding I'm:
badanie-exchange
exchange which happens to bedirect
type.However when I run both scripts, nothing happens on console. What am I doing wrong?