You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have to read from a RabbitMQ in Canada and publish to an internal RabbitMQ here in the US. I have all the credentials, I'm just trying to figure out what the code would look like, since typical application.conf setups only have one RabbitMQ. I have to connect to / read from the one in Canada using SSL.
The text was updated successfully, but these errors were encountered:
val firstRabbit = actorSystem.actorOf(Props(
new RabbitControl(ConnectionParams.fromConfig(
conf.getConfig("op-rabbit.first")
)
))
val secondRabbit = actorSystem.actorOf(Props(
new RabbitControl(ConnectionParams.fromConfig(
conf.getConfig("op-rabbit.second")
)
))
I have to read from a RabbitMQ in Canada and publish to an internal RabbitMQ here in the US. I have all the credentials, I'm just trying to figure out what the code would look like, since typical application.conf setups only have one RabbitMQ. I have to connect to / read from the one in Canada using SSL.
The text was updated successfully, but these errors were encountered: