servicebusconfigurator.ReceiveFrom(<QueueName uri>);
However we are trying to setup a clustered RabbitMQ with mirrored
queues and I do not see an option to specify to create a mirrored
queues using MT. Am I right in assuming so or is there a way to do
that?
I came to this conclusion as I see the below in the method
RabbitMqEndpointManagement.BindQueue
model.QueueDeclare(queueName, true, false, false, null);
Which means it cannot take in the argument to add a policy to the
queue. It is set to null
I couldn't find this anywhere documented and hence thought it would be
a good thing to post this and get clarified.
Thanks in advance for any assistance.
--You received this message because you are subscribed to the Google Groups "masstransit-discuss" group.To post to this group, send email to masstrans...@googlegroups.com.To unsubscribe from this group, send email to masstransit-dis...@googlegroups.com.For more options, visit this group at http://groups.google.com/group/masstransit-discuss?hl=en.
Thanks Jeremy, I checked your code base and it works for this.
I was thinking more of have additional method in the configurator
which can take the arguments for the RabbitMQ queue. On the RabbitMQ
client API's they have the argument parameter exposed and specifying
the mirroring is via free form text parameters and hence I didn't want
to had code any methods for the specific functionality.
Please put your thoughts if this is what the community would like. I
will make changes test it locally and see if I can do a pull request
(I am new to using github, so might take some time) But I would love
to take a stab at it.
Just curious if this was ever implemented in some way or pulled into the trunk as I didn't see anything there.Thanks!