Hi. Firstly, I'm very new to Erlang in general but keen to learn. I know Azure pretty well but AMQP is new on me but i am using the new (in dev) RabbitMQ AMQP 1.0 client to talk to Azure Service Bus (i use RabbitMQ for an on premise solution but need to provide other integrations for clients):
https://github.com/rabbitmq/rabbitmq-amqp1.0-client
I have created a new Erlang application and run it in Erlang/OTP 20 in the console and used the code in the tests that are run against Azure in that repo (i tried using the sample code in README but it just threw exceptions, so figure the test code would have had to have worked when tests were run).
Right now i want some test code to try and push a message (and receive it will be my next task). After a couple of days learning I am now able to connect and authenticate but no matter what I do, cannot get a message posted - i get no error stacktrace but there is no message on the bus. If i try from Python i can do it relatively easily but this needs to be in Erlang.
Anyone have any ideas? Is this my code error, a specific config i need to add or an issue with the library? I created a Service Bus queue called "test" in Azure (not partitioned) with Session support on the Standard plan. A couple of people have suggested that it works with Azure but i haven't yet seen a simple example of it working, so there could be a single setting causing the problem.
Appreciate any advice. Currently looking at how i can trace what is happening as i get no trace directly in the console or via the debugger.
regards,
steven
%%%-------------------------------------------------------------------
%% @doc myapp public API
%% @end
%%%-------------------------------------------------------------------
-module(myapp_app).
-behaviour(application).
%% Application callbacks
-export([start/2, stop/1, connect/0]).
%%====================================================================
%% API
%%====================================================================
%%--------------------------------------------------------------------
%% @private
%% @doc
%% This function is called whenever an application is started using
%% application:start/[1,2], and should start the processes of the
%% application. If the application is structured according to the OTP
%% design principles as a supervision tree, this means starting the
%% top supervisor of the tree.
%%
%% @spec start(StartType, StartArgs) -> {ok, Pid} |
%% {ok, Pid, State} |
%% {error, Reason}
%% StartType = normal | {takeover, Node} | {failover, Node}
%% StartArgs = term()
%% @end
%%--------------------------------------------------------------------
start(_StartType, _StartArgs) ->
io:format("starting~n"),
application:start(ssl),
application:ensure_all_started(amqp10_client),
myapp_sup:start_link().
%%--------------------------------------------------------------------
%% @private
%% @doc
%% This function is called whenever an application has stopped. It
%% is intended to be the opposite of Module:start/2 and should do
%% any necessary cleaning up. The return value is ignored.
%%
%% @spec stop(State) -> void()
%% @end
%%--------------------------------------------------------------------
stop(_State) ->
ok.
connect() ->
io:format("Connecting~n"),
basic_roundtrip_service_bus(),
ok.
basic_roundtrip_service_bus() ->
Hostname = "myazurebroker.servicebus.windows.net",
Port = 5671,
User = "RootManageSharedAccessKey",
Password = "XXXXXXXXXXXXXXXXXXXXXX=",
OpnConf = #{
address => Hostname,
hostname => to_bin(Hostname),
port => Port,
notify => self(),
tls_opts => {secure_port, [{versions, ['tlsv1.1']}]},
container_id => <<"test">>,
sasl => {plain, to_bin(User), to_bin(Password)}
},
roundtrip(OpnConf).
roundtrip(OpenConf) ->
{ok, Connection} = amqp10_client:open_connection(OpenConf),
{ok, Session} = amqp10_client:begin_session(Connection),
{ok, Sender} = amqp10_client:attach_sender_link(Session,
<<"test-sender">>,
<<"test">>,
settled),
await_link(Sender, credited, link_credit_timeout),
Now = os:system_time(millisecond),
Props = #{creation_time => Now},
Msg0 = amqp10_msg:set_properties(Props,
amqp10_msg:new(<<"my-tag">>, <<"banana">>,
true)),
Msg1 = amqp10_msg:set_application_properties(#{"a_key" => "a_value"}, Msg0),
Msg = amqp10_msg:set_message_annotations(#{<<"x_key">> => "x_value"}, Msg1),
ok = amqp10_client:send_msg(Sender, Msg),
ok = amqp10_client:detach_link(Sender),
await_link(Sender, {detached, normal}, link_detach_timeout),
{error, link_not_found} = amqp10_client:detach_link(Sender),
ok.
%%====================================================================
%% Internal functions
%====================================================================
await_link(Who, What, Err) ->
receive
{amqp10_event, {link, Who, What}} ->
ok;
{amqp10_event, {link, Who, {detached, Why}}} ->
exit(Why)
after 5000 -> exit(Err)
end.
to_bin(X) when is_list(X) ->
list_to_binary(X).
> rabbitmq-users+unsubscribe@googlegroups.com.
> To post to this group, send email to rabbitmq-users@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to the Google Groups "rabbitmq-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rabbitmq-users+unsubscribe@googlegroups.com.
To post to this group, send an email to rabbitmq-users@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to the Google Groups "rabbitmq-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rabbitmq-users+unsubscribe@googlegroups.com.
To post to this group, send email to rabbitmq-users@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
> rabbitmq-users+unsubscribe@googlegroups.com.
> To post to this group, send email to rabbitm...@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to the Google Groups "rabbitmq-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rabbitmq-users+unsubscribe@googlegroups.com.
To post to this group, send an email to rabbitm...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--MKStaff Software Engineer, Pivotal/RabbitMQ
--
>> email to rabbitmq-users+unsubscribe@googlegroups.com.
>> To post to this group, send email to rabbitmq-users@googlegroups.com.
>> For more options, visit https://groups.google.com/d/optout.
>
>
>
>
> --
> MK
>
> Staff Software Engineer, Pivotal/RabbitMQ
>
> --
> You received this message because you are subscribed to a topic in the
> Google Groups "rabbitmq-users" group.
> To unsubscribe from this topic, visit
> https://groups.google.com/d/topic/rabbitmq-users/vUKM8MIsmEM/unsubscribe.
> To unsubscribe from this group and all its topics, send an email to
> rabbitmq-users+unsubscribe@googlegroups.com.
> To post to this group, send email to rabbitmq-users@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to the Google Groups "rabbitmq-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rabbitmq-users+unsubscribe@googlegroups.com.
To post to this group, send an email to rabbitmq-users@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
>> To post to this group, send email to rabbitm...@googlegroups.com.
>> For more options, visit https://groups.google.com/d/optout.
>
>
>
>
> --
> MK
>
> Staff Software Engineer, Pivotal/RabbitMQ
>
> --
> You received this message because you are subscribed to a topic in the
> Google Groups "rabbitmq-users" group.
> To unsubscribe from this topic, visit
> https://groups.google.com/d/topic/rabbitmq-users/vUKM8MIsmEM/unsubscribe.
> To unsubscribe from this group and all its topics, send an email to
> rabbitmq-users+unsubscribe@googlegroups.com.
> To post to this group, send email to rabbitm...@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to the Google Groups "rabbitmq-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rabbitmq-users+unsubscribe@googlegroups.com.
To post to this group, send an email to rabbitm...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--MKStaff Software Engineer, Pivotal/RabbitMQ
--
You received this message because you are subscribed to a topic in the Google Groups "rabbitmq-users" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/rabbitmq-users/vUKM8MIsmEM/unsubscribe.
To unsubscribe from this group and all its topics, send an email to rabbitmq-users+unsubscribe@googlegroups.com.
To post to this group, send email to rabbitm...@googlegroups.com.
Michael - I have taken your binary releases and get an instance of MQ
running. I can use shovel to shift messages via AMQP 1 locally.
I cannot get it to work with Azure - I have tried so many
combinations. What would make more sense is if you could define what
settings and their format that you successfully passed into the
rabbitmqctl set_parameter shovel.
As an example, i an trying the one below (i have been trying various
combinations for hours):
./rabbitmqctl set_parameter shovel azure '{ "ack-mode":"on-confirm",
"src-uri": "amqp://localhost:5672", "src-protocol":"amqp10",
"src-address": "test", "dest-protocol":"amqp10", "dest-uri":
"amqp://test:PASSWORD@myservicebus.servicebus.windows.net:5672",
"dest-address": "test1"}'
regards,
steven
>> >> email to rabbitmq-users+unsubscribe@googlegroups.com.
>> >> To post to this group, send email to rabbitmq-users@googlegroups.com.
>> >> For more options, visit https://groups.google.com/d/optout.
>> >
>> >
>> >
>> >
>> > --
>> > MK
>> >
>> > Staff Software Engineer, Pivotal/RabbitMQ
>> >
>> > --
>> > You received this message because you are subscribed to a topic in the
>> > Google Groups "rabbitmq-users" group.
>> > To unsubscribe from this topic, visit
>> >
>> > https://groups.google.com/d/topic/rabbitmq-users/vUKM8MIsmEM/unsubscribe.
>> > To unsubscribe from this group and all its topics, send an email to
>> > rabbitmq-users+unsubscribe@googlegroups.com.
>> > To post to this group, send email to rabbitmq-users@googlegroups.com.
>> > For more options, visit https://groups.google.com/d/optout.
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "rabbitmq-users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to rabbitmq-users+unsubscribe@googlegroups.com.
>> To post to this group, send an email to rabbitmq-users@googlegroups.com.
>> For more options, visit https://groups.google.com/d/optout.
>
>
>
>
> --
> MK
>
> Staff Software Engineer, Pivotal/RabbitMQ
>
> --
> You received this message because you are subscribed to a topic in the
> Google Groups "rabbitmq-users" group.
> To unsubscribe from this topic, visit
> https://groups.google.com/d/topic/rabbitmq-users/vUKM8MIsmEM/unsubscribe.
> To unsubscribe from this group and all its topics, send an email to
> rabbitmq-users+unsubscribe@googlegroups.com.
> To post to this group, send email to rabbitmq-users@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to the Google Groups "rabbitmq-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rabbitmq-users+unsubscribe@googlegroups.com.
To post to this group, send an email to rabbitmq-users@googlegroups.com.
>> >> >> email to rabbitmq-users+unsubscribe@googlegroups.com.
>> >> >> To post to this group, send email to
>> >> >> rabbitmq-users@googlegroups.com.
>> >> >> For more options, visit https://groups.google.com/d/optout.
>> >> >
>> >> >
>> >> >
>> >> >
>> >> > --
>> >> > MK
>> >> >
>> >> > Staff Software Engineer, Pivotal/RabbitMQ
>> >> >
>> >> > --
>> >> > You received this message because you are subscribed to a topic in
>> >> > the
>> >> > Google Groups "rabbitmq-users" group.
>> >> > To unsubscribe from this topic, visit
>> >> >
>> >> >
>> >> > https://groups.google.com/d/topic/rabbitmq-users/vUKM8MIsmEM/unsubscribe.
>> >> > To unsubscribe from this group and all its topics, send an email to
>> >> > rabbitmq-users+unsubscribe@googlegroups.com.
>> >> > To post to this group, send email to rabbitmq-users@googlegroups.com.
>> >> > For more options, visit https://groups.google.com/d/optout.
>> >>
>> >> --
>> >> You received this message because you are subscribed to the Google
>> >> Groups
>> >> "rabbitmq-users" group.
>> >> To unsubscribe from this group and stop receiving emails from it, send
>> >> an
>> >> email to rabbitmq-users+unsubscribe@googlegroups.com.
>> >> To post to this group, send an email to
>> >> For more options, visit https://groups.google.com/d/optout.
>> >
>> >
>> >
>> >
>> > --
>> > MK
>> >
>> > Staff Software Engineer, Pivotal/RabbitMQ
>> >
>> > --
>> > You received this message because you are subscribed to a topic in the
>> > Google Groups "rabbitmq-users" group.
>> > To unsubscribe from this topic, visit
>> >
>> > https://groups.google.com/d/topic/rabbitmq-users/vUKM8MIsmEM/unsubscribe.
>> > To unsubscribe from this group and all its topics, send an email to
>> > rabbitmq-users+unsubscribe@googlegroups.com.
>> > To post to this group, send email to rabbitmq-users@googlegroups.com.
>> > For more options, visit https://groups.google.com/d/optout.
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "rabbitmq-users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to rabbitmq-users+unsubscribe@googlegroups.com.
>> To post to this group, send an email to rabbitmq-users@googlegroups.com.
>> For more options, visit https://groups.google.com/d/optout.
>
>
>
>
> --
> MK
>
> Staff Software Engineer, Pivotal/RabbitMQ
>
> --
> You received this message because you are subscribed to a topic in the
> Google Groups "rabbitmq-users" group.
> To unsubscribe from this topic, visit
> https://groups.google.com/d/topic/rabbitmq-users/vUKM8MIsmEM/unsubscribe.
> To unsubscribe from this group and all its topics, send an email to
> rabbitmq-users+unsubscribe@googlegroups.com.
> To post to this group, send email to rabbitmq-users@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to the Google Groups "rabbitmq-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rabbitmq-users+unsubscribe@googlegroups.com.
To post to this group, send an email to rabbitmq-users@googlegroups.com.
>> >> >> rabbitm...@googlegroups.com.
>> >> >> For more options, visit https://groups.google.com/d/optout.
>> >> >
>> >> >
>> >> >
>> >> >
>> >> > --
>> >> > MK
>> >> >
>> >> > Staff Software Engineer, Pivotal/RabbitMQ
>> >> >
>> >> > --
>> >> > You received this message because you are subscribed to a topic in
>> >> > the
>> >> > Google Groups "rabbitmq-users" group.
>> >> > To unsubscribe from this topic, visit
>> >> >
>> >> >
>> >> > https://groups.google.com/d/topic/rabbitmq-users/vUKM8MIsmEM/unsubscribe.
>> >> > To unsubscribe from this group and all its topics, send an email to
>> >> > rabbitmq-users+unsubscribe@googlegroups.com.
>> >> > To post to this group, send email to rabbitm...@googlegroups.com.
>> >> > For more options, visit https://groups.google.com/d/optout.
>> >>
>> >> --
>> >> You received this message because you are subscribed to the Google
>> >> Groups
>> >> "rabbitmq-users" group.
>> >> To unsubscribe from this group and stop receiving emails from it, send
>> >> an
>> >> email to rabbitmq-users+unsubscribe@googlegroups.com.
>> >> To post to this group, send an email to
>> >> rabbitm...@googlegroups.com.
>> >> For more options, visit https://groups.google.com/d/optout.
>> >
>> >
>> >
>> >
>> > --
>> > MK
>> >
>> > Staff Software Engineer, Pivotal/RabbitMQ
>> >
>> > --
>> > You received this message because you are subscribed to a topic in the
>> > Google Groups "rabbitmq-users" group.
>> > To unsubscribe from this topic, visit
>> >
>> > https://groups.google.com/d/topic/rabbitmq-users/vUKM8MIsmEM/unsubscribe.
>> > To unsubscribe from this group and all its topics, send an email to
>> > rabbitmq-users+unsubscribe@googlegroups.com.
>> > To post to this group, send email to rabbitm...@googlegroups.com.
>> > For more options, visit https://groups.google.com/d/optout.
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "rabbitmq-users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to rabbitmq-users+unsubscribe@googlegroups.com.
>> To post to this group, send an email to rabbitm...@googlegroups.com.
>> For more options, visit https://groups.google.com/d/optout.
>
>
>
>
> --
> MK
>
> Staff Software Engineer, Pivotal/RabbitMQ
>
> --
> You received this message because you are subscribed to a topic in the
> Google Groups "rabbitmq-users" group.
> To unsubscribe from this topic, visit
> https://groups.google.com/d/topic/rabbitmq-users/vUKM8MIsmEM/unsubscribe.
> To unsubscribe from this group and all its topics, send an email to
> rabbitmq-users+unsubscribe@googlegroups.com.
> To post to this group, send email to rabbitm...@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to the Google Groups "rabbitmq-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rabbitmq-users+unsubscribe@googlegroups.com.
To post to this group, send an email to rabbitm...@googlegroups.com.
--MKStaff Software Engineer, Pivotal/RabbitMQ
Thanks for your help last week Michael - I managed to get things
working from your Rabbit MQ client to Azure Service Bus.
The code that works is very much the same as that on GitHub README
page ... sure i tried it last week but in any case it is working.
There may have been an element of getting my head around Erlang but
again, sure i tried that basic stuff a few times.
It does only work on one of my three queues - and in fact the NodeJS
amqp client also only works on that queue so i think there must be
something around setting the queue up i need to read into.
many thanks again,
steven
>>>> >> "amqp://test:PASSWORD@myservicebus.servicebus.windows.net:5672",
>>>> >> >> >> email to rabbitmq-users+unsubscribe@googlegroups.com.
>>>> >> >> >> To post to this group, send email to
>>>> >> >> >> rabbitmq-users@googlegroups.com.
>>>> >> >> >> For more options, visit https://groups.google.com/d/optout.
>>>> >> >> >
>>>> >> >> >
>>>> >> >> >
>>>> >> >> >
>>>> >> >> > --
>>>> >> >> > MK
>>>> >> >> >
>>>> >> >> > Staff Software Engineer, Pivotal/RabbitMQ
>>>> >> >> >
>>>> >> >> > --
>>>> >> >> > You received this message because you are subscribed to a topic
>>>> >> >> > in
>>>> >> >> > the
>>>> >> >> > Google Groups "rabbitmq-users" group.
>>>> >> >> > To unsubscribe from this topic, visit
>>>> >> >> >
>>>> >> >> >
>>>> >> >> >
>>>> >> >> > https://groups.google.com/d/topic/rabbitmq-users/vUKM8MIsmEM/unsubscribe.
>>>> >> >> > To unsubscribe from this group and all its topics, send an email
>>>> >> >> > to
>>>> >> >> > rabbitmq-users+unsubscribe@googlegroups.com.
>>>> >> >> > To post to this group, send email to
>>>> >> >> > rabbitmq-users@googlegroups.com.
>>>> >> >> > For more options, visit https://groups.google.com/d/optout.
>>>> >> >>
>>>> >> >> --
>>>> >> >> You received this message because you are subscribed to the Google
>>>> >> >> Groups
>>>> >> >> "rabbitmq-users" group.
>>>> >> >> To unsubscribe from this group and stop receiving emails from it,
>>>> >> >> send
>>>> >> >> an
>>>> >> >> email to rabbitmq-users+unsubscribe@googlegroups.com.
>>>> >> >> To post to this group, send an email to
>>>> >> >> rabbitmq-users@googlegroups.com.
>>>> >> >> For more options, visit https://groups.google.com/d/optout.
>>>> >> >
>>>> >> >
>>>> >> >
>>>> >> >
>>>> >> > --
>>>> >> > MK
>>>> >> >
>>>> >> > Staff Software Engineer, Pivotal/RabbitMQ
>>>> >> >
>>>> >> > --
>>>> >> > You received this message because you are subscribed to a topic in
>>>> >> > the
>>>> >> > Google Groups "rabbitmq-users" group.
>>>> >> > To unsubscribe from this topic, visit
>>>> >> >
>>>> >> >
>>>> >> > https://groups.google.com/d/topic/rabbitmq-users/vUKM8MIsmEM/unsubscribe.
>>>> >> > To unsubscribe from this group and all its topics, send an email to
>>>> >> > rabbitmq-users+unsubscribe@googlegroups.com.
>>>> >> > To post to this group, send email to
>>>> >> > rabbitmq-users@googlegroups.com.
>>>> >> > For more options, visit https://groups.google.com/d/optout.
>>>> >>
>>>> >> --
>>>> >> You received this message because you are subscribed to the Google
>>>> >> Groups
>>>> >> "rabbitmq-users" group.
>>>> >> To unsubscribe from this group and stop receiving emails from it, send
>>>> >> an
>>>> >> email to rabbitmq-users+unsubscribe@googlegroups.com.
>>>> >> To post to this group, send an email to
>>>> >> rabbitmq-users@googlegroups.com.
>>>> >> For more options, visit https://groups.google.com/d/optout.
>>>> >
>>>> >
>>>> >
>>>> >
>>>> > --
>>>> > MK
>>>> >
>>>> > Staff Software Engineer, Pivotal/RabbitMQ
>>>> >
>>>> > --
>>>> > You received this message because you are subscribed to a topic in the
>>>> > Google Groups "rabbitmq-users" group.
>>>> > To unsubscribe from this topic, visit
>>>> >
>>>> > https://groups.google.com/d/topic/rabbitmq-users/vUKM8MIsmEM/unsubscribe.
>>>> > To unsubscribe from this group and all its topics, send an email to
>>>> > rabbitmq-users+unsubscribe@googlegroups.com.
>>>> > To post to this group, send email to rabbitmq-users@googlegroups.com.
>>>> > For more options, visit https://groups.google.com/d/optout.
>>>>
>>>> --
>>>> You received this message because you are subscribed to the Google Groups
>>>> "rabbitmq-users" group.
>>>> To unsubscribe from this group and stop receiving emails from it, send an
>>>> email to rabbitmq-users+unsubscribe@googlegroups.com.
>>>> To post to this group, send an email to rabbitmq-users@googlegroups.com.
>>>> For more options, visit https://groups.google.com/d/optout.
>>>
>>>
>>>
>>>
>>> --
>>> MK
>>>
>>> Staff Software Engineer, Pivotal/RabbitMQ
>>
>>
>>
>>
>> --
>> MK
>>
>> Staff Software Engineer, Pivotal/RabbitMQ
>>
>> --
>> You received this message because you are subscribed to a topic in the
>> Google Groups "rabbitmq-users" group.
>> To unsubscribe from this topic, visit
>> https://groups.google.com/d/topic/rabbitmq-users/vUKM8MIsmEM/unsubscribe.
>> To unsubscribe from this group and all its topics, send an email to
>> rabbitmq-users+unsubscribe@googlegroups.com.
>> To post to this group, send email to rabbitmq-users@googlegroups.com.
>>>> >> >> >> rabbitm...@googlegroups.com.
>>>> >> >> >> For more options, visit https://groups.google.com/d/optout.
>>>> >> >> >
>>>> >> >> >
>>>> >> >> >
>>>> >> >> >
>>>> >> >> > --
>>>> >> >> > MK
>>>> >> >> >
>>>> >> >> > Staff Software Engineer, Pivotal/RabbitMQ
>>>> >> >> >
>>>> >> >> > --
>>>> >> >> > You received this message because you are subscribed to a topic
>>>> >> >> > in
>>>> >> >> > the
>>>> >> >> > Google Groups "rabbitmq-users" group.
>>>> >> >> > To unsubscribe from this topic, visit
>>>> >> >> >
>>>> >> >> >
>>>> >> >> >
>>>> >> >> > https://groups.google.com/d/topic/rabbitmq-users/vUKM8MIsmEM/unsubscribe.
>>>> >> >> > To unsubscribe from this group and all its topics, send an email
>>>> >> >> > to
>>>> >> >> > rabbitmq-users+unsubscribe@googlegroups.com.
>>>> >> >> > To post to this group, send email to
>>>> >> >> > rabbitm...@googlegroups.com.
>>>> >> >> > For more options, visit https://groups.google.com/d/optout.
>>>> >> >>
>>>> >> >> --
>>>> >> >> You received this message because you are subscribed to the Google
>>>> >> >> Groups
>>>> >> >> "rabbitmq-users" group.
>>>> >> >> To unsubscribe from this group and stop receiving emails from it,
>>>> >> >> send
>>>> >> >> an
>>>> >> >> email to rabbitmq-users+unsubscribe@googlegroups.com.
>>>> >> >> To post to this group, send an email to
>>>> >> >> rabbitm...@googlegroups.com.
>>>> >> >> For more options, visit https://groups.google.com/d/optout.
>>>> >> >
>>>> >> >
>>>> >> >
>>>> >> >
>>>> >> > --
>>>> >> > MK
>>>> >> >
>>>> >> > Staff Software Engineer, Pivotal/RabbitMQ
>>>> >> >
>>>> >> > --
>>>> >> > You received this message because you are subscribed to a topic in
>>>> >> > the
>>>> >> > Google Groups "rabbitmq-users" group.
>>>> >> > To unsubscribe from this topic, visit
>>>> >> >
>>>> >> >
>>>> >> > https://groups.google.com/d/topic/rabbitmq-users/vUKM8MIsmEM/unsubscribe.
>>>> >> > To unsubscribe from this group and all its topics, send an email to
>>>> >> > rabbitmq-users+unsubscribe@googlegroups.com.
>>>> >> > To post to this group, send email to
>>>> >> > rabbitm...@googlegroups.com.
>>>> >> > For more options, visit https://groups.google.com/d/optout.
>>>> >>
>>>> >> --
>>>> >> You received this message because you are subscribed to the Google
>>>> >> Groups
>>>> >> "rabbitmq-users" group.
>>>> >> To unsubscribe from this group and stop receiving emails from it, send
>>>> >> an
>>>> >> email to rabbitmq-users+unsubscribe@googlegroups.com.
>>>> >> To post to this group, send an email to
>>>> >> rabbitm...@googlegroups.com.
>>>> >> For more options, visit https://groups.google.com/d/optout.
>>>> >
>>>> >
>>>> >
>>>> >
>>>> > --
>>>> > MK
>>>> >
>>>> > Staff Software Engineer, Pivotal/RabbitMQ
>>>> >
>>>> > --
>>>> > You received this message because you are subscribed to a topic in the
>>>> > Google Groups "rabbitmq-users" group.
>>>> > To unsubscribe from this topic, visit
>>>> >
>>>> > https://groups.google.com/d/topic/rabbitmq-users/vUKM8MIsmEM/unsubscribe.
>>>> > To unsubscribe from this group and all its topics, send an email to
>>>> > rabbitmq-users+unsubscribe@googlegroups.com.
>>>> > To post to this group, send email to rabbitm...@googlegroups.com.
>>>> > For more options, visit https://groups.google.com/d/optout.
>>>>
>>>> --
>>>> You received this message because you are subscribed to the Google Groups
>>>> "rabbitmq-users" group.
>>>> To unsubscribe from this group and stop receiving emails from it, send an
>>>> email to rabbitmq-users+unsubscribe@googlegroups.com.
>>>> To post to this group, send an email to rabbitm...@googlegroups.com.
>>>> For more options, visit https://groups.google.com/d/optout.
>>>
>>>
>>>
>>>
>>> --
>>> MK
>>>
>>> Staff Software Engineer, Pivotal/RabbitMQ
>>
>>
>>
>>
>> --
>> MK
>>
>> Staff Software Engineer, Pivotal/RabbitMQ
>>
>> --
>> You received this message because you are subscribed to a topic in the
>> Google Groups "rabbitmq-users" group.
>> To unsubscribe from this topic, visit
>> https://groups.google.com/d/topic/rabbitmq-users/vUKM8MIsmEM/unsubscribe.
>> To unsubscribe from this group and all its topics, send an email to
>> rabbitmq-users+unsubscribe@googlegroups.com.
>> To post to this group, send email to rabbitm...@googlegroups.com.
--MKStaff Software Engineer, Pivotal/RabbitMQ
--
You received this message because you are subscribed to the Google Groups "rabbitmq-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rabbitmq-users+unsubscribe@googlegroups.com.
To post to this group, send email to rabbitmq-users@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
To post to this group, send email to rabbitm...@googlegroups.com.
--Karl NilssonPivotal/RabbitMQ
--
You received this message because you are subscribed to a topic in the Google Groups "rabbitmq-users" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/rabbitmq-users/vUKM8MIsmEM/unsubscribe.
To unsubscribe from this group and all its topics, send an email to rabbitmq-users+unsubscribe@googlegroups.com.
To post to this group, send email to rabbitm...@googlegroups.com.
--
You received this message because you are subscribed to the Google Groups "rabbitmq-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rabbitmq-users+unsubscribe@googlegroups.com.
To post to this group, send email to rabbitmq-users@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
>>>> >>>> >> "amqp://test:PASSWORD@myservicebus.servicebus.windows.net:5672",
>>>> >>>> >> >> >> email to rabbitmq-users+unsubscribe@googlegroups.com.
>>>> >>>> >> >> >> To post to this group, send email to
>>>> >>>> >> >> >> rabbitmq-users@googlegroups.com.
>>>> >>>> >> >> >> For more options, visit
>>>> >>>> >> >> >> https://groups.google.com/d/optout.
>>>> >>>> >> >> >
>>>> >>>> >> >> >
>>>> >>>> >> >> >
>>>> >>>> >> >> >
>>>> >>>> >> >> > --
>>>> >>>> >> >> > MK
>>>> >>>> >> >> >
>>>> >>>> >> >> > Staff Software Engineer, Pivotal/RabbitMQ
>>>> >>>> >> >> >
>>>> >>>> >> >> > --
>>>> >>>> >> >> > You received this message because you are subscribed to a
>>>> >>>> >> >> > topic
>>>> >>>> >> >> > in
>>>> >>>> >> >> > the
>>>> >>>> >> >> > Google Groups "rabbitmq-users" group.
>>>> >>>> >> >> > To unsubscribe from this topic, visit
>>>> >>>> >> >> >
>>>> >>>> >> >> >
>>>> >>>> >> >> >
>>>> >>>> >> >> >
>>>> >>>> >> >> > https://groups.google.com/d/topic/rabbitmq-users/vUKM8MIsmEM/unsubscribe.
>>>> >>>> >> >> > To unsubscribe from this group and all its topics, send an
>>>> >>>> >> >> > to
>>>> >>>> >> >> > rabbitmq-users+unsubscribe@googlegroups.com.
>>>> >>>> >> >> > To post to this group, send email to
>>>> >>>> >> >> > rabbitmq-users@googlegroups.com.
>>>> >>>> >> >> > For more options, visit https://groups.google.com/d/optout.
>>>> >>>> >> >>
>>>> >>>> >> >> --
>>>> >>>> >> >> You received this message because you are subscribed to the
>>>> >>>> >> >> Groups
>>>> >>>> >> >> "rabbitmq-users" group.
>>>> >>>> >> >> To unsubscribe from this group and stop receiving emails from
>>>> >>>> >> >> it,
>>>> >>>> >> >> send
>>>> >>>> >> >> an
>>>> >>>> >> >> email to rabbitmq-users+unsubscribe@googlegroups.com.
>>>> >>>> >> >> To post to this group, send an email to
>>>> >>>> >> >> rabbitmq-users@googlegroups.com.
>>>> >>>> >> >> For more options, visit https://groups.google.com/d/optout.
>>>> >>>> >> >
>>>> >>>> >> >
>>>> >>>> >> >
>>>> >>>> >> >
>>>> >>>> >> > --
>>>> >>>> >> > MK
>>>> >>>> >> >
>>>> >>>> >> > Staff Software Engineer, Pivotal/RabbitMQ
>>>> >>>> >> >
>>>> >>>> >> > --
>>>> >>>> >> > You received this message because you are subscribed to a
>>>> >>>> >> > topic in
>>>> >>>> >> > the
>>>> >>>> >> > Google Groups "rabbitmq-users" group.
>>>> >>>> >> > To unsubscribe from this topic, visit
>>>> >>>> >> >
>>>> >>>> >> >
>>>> >>>> >> >
>>>> >>>> >> > https://groups.google.com/d/topic/rabbitmq-users/vUKM8MIsmEM/unsubscribe.
>>>> >>>> >> > To unsubscribe from this group and all its topics, send an
>>>> >>>> >> > email to
>>>> >>>> >> > rabbitmq-users+unsubscribe@googlegroups.com.
>>>> >>>> >> > To post to this group, send email to
>>>> >>>> >> > rabbitmq-users@googlegroups.com.
>>>> >>>> >> > For more options, visit https://groups.google.com/d/optout.
>>>> >>>> >>
>>>> >>>> >> --
>>>> >>>> >> You received this message because you are subscribed to the
>>>> >>>> >> Groups
>>>> >>>> >> "rabbitmq-users" group.
>>>> >>>> >> To unsubscribe from this group and stop receiving emails from
>>>> >>>> >> it, send
>>>> >>>> >> an
>>>> >>>> >> email to rabbitmq-users+unsubscribe@googlegroups.com.
>>>> >>>> >> To post to this group, send an email to
>>>> >>>> >> rabbitmq-users@googlegroups.com.
>>>> >>>> >> For more options, visit https://groups.google.com/d/optout.
>>>> >>>> >
>>>> >>>> >
>>>> >>>> >
>>>> >>>> >
>>>> >>>> > --
>>>> >>>> > MK
>>>> >>>> >
>>>> >>>> > Staff Software Engineer, Pivotal/RabbitMQ
>>>> >>>> >
>>>> >>>> > --
>>>> >>>> > You received this message because you are subscribed to a topic
>>>> >>>> > in the
>>>> >>>> > Google Groups "rabbitmq-users" group.
>>>> >>>> > To unsubscribe from this topic, visit
>>>> >>>> >
>>>> >>>> >
>>>> >>>> > https://groups.google.com/d/topic/rabbitmq-users/vUKM8MIsmEM/unsubscribe.
>>>> >>>> > To unsubscribe from this group and all its topics, send an email
>>>> >>>> > to
>>>> >>>> > rabbitmq-users+unsubscribe@googlegroups.com.
>>>> >>>> > To post to this group, send email to
>>>> >>>> > rabbitmq-users@googlegroups.com.
>>>> >>>> > For more options, visit https://groups.google.com/d/optout.
>>>> >>>>
>>>> >>>> --
>>>> >>>> You received this message because you are subscribed to the Google
>>>> >>>> Groups
>>>> >>>> "rabbitmq-users" group.
>>>> >>>> To unsubscribe from this group and stop receiving emails from it,
>>>> >>>> send an
>>>> >>>> email to rabbitmq-users+unsubscribe@googlegroups.com.
>>>> >>>> To post to this group, send an email to
>>>> >>>> rabbitmq-users@googlegroups.com.
>>>> >>>> For more options, visit https://groups.google.com/d/optout.
>>>> >>>
>>>> >>>
>>>> >>>
>>>> >>>
>>>> >>> --
>>>> >>> MK
>>>> >>>
>>>> >>> Staff Software Engineer, Pivotal/RabbitMQ
>>>> >>
>>>> >>
>>>> >>
>>>> >>
>>>> >> --
>>>> >> MK
>>>> >>
>>>> >> Staff Software Engineer, Pivotal/RabbitMQ
>>>> >>
>>>> >> --
>>>> >> You received this message because you are subscribed to a topic in
>>>> >> the
>>>> >> Google Groups "rabbitmq-users" group.
>>>> >> To unsubscribe from this topic, visit
>>>> >>
>>>> >> https://groups.google.com/d/topic/rabbitmq-users/vUKM8MIsmEM/unsubscribe.
>>>> >> To unsubscribe from this group and all its topics, send an email to
>>>> >> rabbitmq-users+unsubscribe@googlegroups.com.
>>>> >> To post to this group, send email to rabbitmq-users@googlegroups.com.
>>>> >> For more options, visit https://groups.google.com/d/optout.
>>>
>>>
>>>
>>>
>>> --
>>> MK
>>>
>>> Staff Software Engineer, Pivotal/RabbitMQ
>>>
>>> --
>>> You received this message because you are subscribed to the Google Groups
>>> "rabbitmq-users" group.
>>> To unsubscribe from this group and stop receiving emails from it, send an
>>> email to rabbitmq-users+unsubscribe@googlegroups.com.
>>> To post to this group, send email to rabbitmq-users@googlegroups.com.
>>> For more options, visit https://groups.google.com/d/optout.
>>
>>
>>
>>
>> --
>> Karl Nilsson
>>
>> Pivotal/RabbitMQ
>>
>> --
>> You received this message because you are subscribed to a topic in the
>> Google Groups "rabbitmq-users" group.
>> To unsubscribe from this topic, visit
>> https://groups.google.com/d/topic/rabbitmq-users/vUKM8MIsmEM/unsubscribe.
>> To unsubscribe from this group and all its topics, send an email to
>> rabbitmq-users+unsubscribe@googlegroups.com.
>> To post to this group, send email to rabbitmq-users@googlegroups.com.
>> For more options, visit https://groups.google.com/d/optout.
>>
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "rabbitmq-users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to rabbitmq-users+unsubscribe@googlegroups.com.
>> To post to this group, send email to rabbitmq-users@googlegroups.com.
>> For more options, visit https://groups.google.com/d/optout.
>
>
>
>
> --
> Karl Nilsson
>
> Pivotal/RabbitMQ
>
> --
> You received this message because you are subscribed to a topic in the
> Google Groups "rabbitmq-users" group.
> To unsubscribe from this topic, visit
> https://groups.google.com/d/topic/rabbitmq-users/vUKM8MIsmEM/unsubscribe.
> To unsubscribe from this group and all its topics, send an email to
> rabbitmq-users+unsubscribe@googlegroups.com.
> To post to this group, send email to rabbitmq-users@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to the Google Groups "rabbitmq-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rabbitmq-users+unsubscribe@googlegroups.com.
To post to this group, send an email to rabbitmq-users@googlegroups.com.
>>>> >>>> >> >> >> rabbitm...@googlegroups.com.
>>>> >>>> >> >> >> For more options, visit
>>>> >>>> >> >> >> https://groups.google.com/d/optout.
>>>> >>>> >> >> >
>>>> >>>> >> >> >
>>>> >>>> >> >> >
>>>> >>>> >> >> >
>>>> >>>> >> >> > --
>>>> >>>> >> >> > MK
>>>> >>>> >> >> >
>>>> >>>> >> >> > Staff Software Engineer, Pivotal/RabbitMQ
>>>> >>>> >> >> >
>>>> >>>> >> >> > --
>>>> >>>> >> >> > You received this message because you are subscribed to a
>>>> >>>> >> >> > topic
>>>> >>>> >> >> > in
>>>> >>>> >> >> > the
>>>> >>>> >> >> > Google Groups "rabbitmq-users" group.
>>>> >>>> >> >> > To unsubscribe from this topic, visit
>>>> >>>> >> >> >
>>>> >>>> >> >> >
>>>> >>>> >> >> >
>>>> >>>> >> >> >
>>>> >>>> >> >> > https://groups.google.com/d/topic/rabbitmq-users/vUKM8MIsmEM/unsubscribe.
>>>> >>>> >> >> > To unsubscribe from this group and all its topics, send an
>>>> >>>> >> >> > to
>>>> >>>> >> >> > rabbitmq-users+unsubscribe@googlegroups.com.
>>>> >>>> >> >> > To post to this group, send email to
>>>> >>>> >> >> > rabbitm...@googlegroups.com.
>>>> >>>> >> >> > For more options, visit https://groups.google.com/d/optout.
>>>> >>>> >> >>
>>>> >>>> >> >> --
>>>> >>>> >> >> You received this message because you are subscribed to the
>>>> >>>> >> >> Groups
>>>> >>>> >> >> "rabbitmq-users" group.
>>>> >>>> >> >> To unsubscribe from this group and stop receiving emails from
>>>> >>>> >> >> it,
>>>> >>>> >> >> send
>>>> >>>> >> >> an
>>>> >>>> >> >> email to rabbitmq-users+unsubscribe@googlegroups.com.
>>>> >>>> >> >> To post to this group, send an email to
>>>> >>>> >> >> rabbitm...@googlegroups.com.
>>>> >>>> >> >> For more options, visit https://groups.google.com/d/optout.
>>>> >>>> >> >
>>>> >>>> >> >
>>>> >>>> >> >
>>>> >>>> >> >
>>>> >>>> >> > --
>>>> >>>> >> > MK
>>>> >>>> >> >
>>>> >>>> >> > Staff Software Engineer, Pivotal/RabbitMQ
>>>> >>>> >> >
>>>> >>>> >> > --
>>>> >>>> >> > You received this message because you are subscribed to a
>>>> >>>> >> > topic in
>>>> >>>> >> > the
>>>> >>>> >> > Google Groups "rabbitmq-users" group.
>>>> >>>> >> > To unsubscribe from this topic, visit
>>>> >>>> >> >
>>>> >>>> >> >
>>>> >>>> >> >
>>>> >>>> >> > https://groups.google.com/d/topic/rabbitmq-users/vUKM8MIsmEM/unsubscribe.
>>>> >>>> >> > To unsubscribe from this group and all its topics, send an
>>>> >>>> >> > email to
>>>> >>>> >> > rabbitmq-users+unsubscribe@googlegroups.com.
>>>> >>>> >> > To post to this group, send email to
>>>> >>>> >> > rabbitm...@googlegroups.com.
>>>> >>>> >> > For more options, visit https://groups.google.com/d/optout.
>>>> >>>> >>
>>>> >>>> >> --
>>>> >>>> >> You received this message because you are subscribed to the
>>>> >>>> >> Groups
>>>> >>>> >> "rabbitmq-users" group.
>>>> >>>> >> To unsubscribe from this group and stop receiving emails from
>>>> >>>> >> it, send
>>>> >>>> >> an
>>>> >>>> >> email to rabbitmq-users+unsubscribe@googlegroups.com.
>>>> >>>> >> To post to this group, send an email to
>>>> >>>> >> rabbitm...@googlegroups.com.
>>>> >>>> >> For more options, visit https://groups.google.com/d/optout.
>>>> >>>> >
>>>> >>>> >
>>>> >>>> >
>>>> >>>> >
>>>> >>>> > --
>>>> >>>> > MK
>>>> >>>> >
>>>> >>>> > Staff Software Engineer, Pivotal/RabbitMQ
>>>> >>>> >
>>>> >>>> > --
>>>> >>>> > You received this message because you are subscribed to a topic
>>>> >>>> > in the
>>>> >>>> > Google Groups "rabbitmq-users" group.
>>>> >>>> > To unsubscribe from this topic, visit
>>>> >>>> >
>>>> >>>> >
>>>> >>>> > https://groups.google.com/d/topic/rabbitmq-users/vUKM8MIsmEM/unsubscribe.
>>>> >>>> > To unsubscribe from this group and all its topics, send an email
>>>> >>>> > to
>>>> >>>> > rabbitmq-users+unsubscribe@googlegroups.com.
>>>> >>>> > To post to this group, send email to
>>>> >>>> > rabbitm...@googlegroups.com.
>>>> >>>> > For more options, visit https://groups.google.com/d/optout.
>>>> >>>>
>>>> >>>> --
>>>> >>>> You received this message because you are subscribed to the Google
>>>> >>>> Groups
>>>> >>>> "rabbitmq-users" group.
>>>> >>>> To unsubscribe from this group and stop receiving emails from it,
>>>> >>>> send an
>>>> >>>> email to rabbitmq-users+unsubscribe@googlegroups.com.
>>>> >>>> To post to this group, send an email to
>>>> >>>> rabbitm...@googlegroups.com.
>>>> >>>> For more options, visit https://groups.google.com/d/optout.
>>>> >>>
>>>> >>>
>>>> >>>
>>>> >>>
>>>> >>> --
>>>> >>> MK
>>>> >>>
>>>> >>> Staff Software Engineer, Pivotal/RabbitMQ
>>>> >>
>>>> >>
>>>> >>
>>>> >>
>>>> >> --
>>>> >> MK
>>>> >>
>>>> >> Staff Software Engineer, Pivotal/RabbitMQ
>>>> >>
>>>> >> --
>>>> >> You received this message because you are subscribed to a topic in
>>>> >> the
>>>> >> Google Groups "rabbitmq-users" group.
>>>> >> To unsubscribe from this topic, visit
>>>> >>
>>>> >> https://groups.google.com/d/topic/rabbitmq-users/vUKM8MIsmEM/unsubscribe.
>>>> >> To unsubscribe from this group and all its topics, send an email to
>>>> >> rabbitmq-users+unsubscribe@googlegroups.com.
>>>> >> To post to this group, send email to rabbitm...@googlegroups.com.
>>>> >> For more options, visit https://groups.google.com/d/optout.
>>>
>>>
>>>
>>>
>>> --
>>> MK
>>>
>>> Staff Software Engineer, Pivotal/RabbitMQ
>>>
>>> --
>>> You received this message because you are subscribed to the Google Groups
>>> "rabbitmq-users" group.
>>> To unsubscribe from this group and stop receiving emails from it, send an
>>> email to rabbitmq-users+unsubscribe@googlegroups.com.
>>> To post to this group, send email to rabbitm...@googlegroups.com.
>>> For more options, visit https://groups.google.com/d/optout.
>>
>>
>>
>>
>> --
>> Karl Nilsson
>>
>> Pivotal/RabbitMQ
>>
>> --
>> You received this message because you are subscribed to a topic in the
>> Google Groups "rabbitmq-users" group.
>> To unsubscribe from this topic, visit
>> https://groups.google.com/d/topic/rabbitmq-users/vUKM8MIsmEM/unsubscribe.
>> To unsubscribe from this group and all its topics, send an email to
>> rabbitmq-users+unsubscribe@googlegroups.com.
>> To post to this group, send email to rabbitm...@googlegroups.com.
>> For more options, visit https://groups.google.com/d/optout.
>>
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "rabbitmq-users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to rabbitmq-users+unsubscribe@googlegroups.com.
>> To post to this group, send email to rabbitm...@googlegroups.com.
>> For more options, visit https://groups.google.com/d/optout.
>
>
>
>
> --
> Karl Nilsson
>
> Pivotal/RabbitMQ
>
> --
> You received this message because you are subscribed to a topic in the
> Google Groups "rabbitmq-users" group.
> To unsubscribe from this topic, visit
> https://groups.google.com/d/topic/rabbitmq-users/vUKM8MIsmEM/unsubscribe.
> To unsubscribe from this group and all its topics, send an email to
> rabbitmq-users+unsubscribe@googlegroups.com.
> To post to this group, send email to rabbitm...@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to the Google Groups "rabbitmq-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rabbitmq-users+unsubscribe@googlegroups.com.
To post to this group, send an email to rabbitm...@googlegroups.com.
--Karl NilssonPivotal/RabbitMQ
>>>> >>>> >>>> >> "amqp://test:PASSWORD@myservicebus.servicebus.windows.net:5672",
>>>> >>>> >>>> >> >> >> email to rabbitmq-users+unsubscribe@googlegroups.com.
>>>> >>>> >>>> >> >> >> To post to this group, send email to
>>>> >>>> >>>> >> >> >> rabbitmq-users@googlegroups.com.
>>>> >>>> >>>> >> >> >> For more options, visit
>>>> >>>> >>>> >> >> >> https://groups.google.com/d/optout.
>>>> >>>> >>>> >> >> >
>>>> >>>> >>>> >> >> >
>>>> >>>> >>>> >> >> >
>>>> >>>> >>>> >> >> >
>>>> >>>> >>>> >> >> > --
>>>> >>>> >>>> >> >> > MK
>>>> >>>> >>>> >> >> >
>>>> >>>> >>>> >> >> > Staff Software Engineer, Pivotal/RabbitMQ
>>>> >>>> >>>> >> >> >
>>>> >>>> >>>> >> >> > --
>>>> >>>> >>>> >> >> > You received this message because you are subscribed to
>>>> >>>> >>>> >> >> > a
>>>> >>>> >>>> >> >> > topic
>>>> >>>> >>>> >> >> > in
>>>> >>>> >>>> >> >> > the
>>>> >>>> >>>> >> >> > Google Groups "rabbitmq-users" group.
>>>> >>>> >>>> >> >> > To unsubscribe from this topic, visit
>>>> >>>> >>>> >> >> >
>>>> >>>> >>>> >> >> >
>>>> >>>> >>>> >> >> >
>>>> >>>> >>>> >> >> >
>>>> >>>> >>>> >> >> >
>>>> >>>> >>>> >> >> > https://groups.google.com/d/topic/rabbitmq-users/vUKM8MIsmEM/unsubscribe.
>>>> >>>> >>>> >> >> > To unsubscribe from this group and all its topics, send
>>>> >>>> >>>> >> >> > an
>>>> >>>> >>>> >> >> > to
>>>> >>>> >>>> >> >> > rabbitmq-users+unsubscribe@googlegroups.com.
>>>> >>>> >>>> >> >> > To post to this group, send email to
>>>> >>>> >>>> >> >> > rabbitmq-users@googlegroups.com.
>>>> >>>> >>>> >> >> > For more options, visit
>>>> >>>> >>>> >> >> > https://groups.google.com/d/optout.
>>>> >>>> >>>> >> >>
>>>> >>>> >>>> >> >> --
>>>> >>>> >>>> >> >> You received this message because you are subscribed to
>>>> >>>> >>>> >> >> the
>>>> >>>> >>>> >> >> Groups
>>>> >>>> >>>> >> >> "rabbitmq-users" group.
>>>> >>>> >>>> >> >> To unsubscribe from this group and stop receiving emails
>>>> >>>> >>>> >> >> from
>>>> >>>> >>>> >> >> it,
>>>> >>>> >>>> >> >> send
>>>> >>>> >>>> >> >> an
>>>> >>>> >>>> >> >> email to rabbitmq-users+unsubscribe@googlegroups.com.
>>>> >>>> >>>> >> >> To post to this group, send an email to
>>>> >>>> >>>> >> >> rabbitmq-users@googlegroups.com.
>>>> >>>> >>>> >> >> For more options, visit
>>>> >>>> >>>> >> >> https://groups.google.com/d/optout.
>>>> >>>> >>>> >> >
>>>> >>>> >>>> >> >
>>>> >>>> >>>> >> >
>>>> >>>> >>>> >> >
>>>> >>>> >>>> >> > --
>>>> >>>> >>>> >> > MK
>>>> >>>> >>>> >> >
>>>> >>>> >>>> >> > Staff Software Engineer, Pivotal/RabbitMQ
>>>> >>>> >>>> >> >
>>>> >>>> >>>> >> > --
>>>> >>>> >>>> >> > You received this message because you are subscribed to a
>>>> >>>> >>>> >> > topic in
>>>> >>>> >>>> >> > the
>>>> >>>> >>>> >> > Google Groups "rabbitmq-users" group.
>>>> >>>> >>>> >> > To unsubscribe from this topic, visit
>>>> >>>> >>>> >> >
>>>> >>>> >>>> >> >
>>>> >>>> >>>> >> >
>>>> >>>> >>>> >> >
>>>> >>>> >>>> >> > https://groups.google.com/d/topic/rabbitmq-users/vUKM8MIsmEM/unsubscribe.
>>>> >>>> >>>> >> > To unsubscribe from this group and all its topics, send an
>>>> >>>> >>>> >> > email to
>>>> >>>> >>>> >> > rabbitmq-users+unsubscribe@googlegroups.com.
>>>> >>>> >>>> >> > To post to this group, send email to
>>>> >>>> >>>> >> > rabbitmq-users@googlegroups.com.
>>>> >>>> >>>> >> > For more options, visit
>>>> >>>> >>>> >> > https://groups.google.com/d/optout.
>>>> >>>> >>>> >>
>>>> >>>> >>>> >> --
>>>> >>>> >>>> >> You received this message because you are subscribed to the
>>>> >>>> >>>> >> Groups
>>>> >>>> >>>> >> "rabbitmq-users" group.
>>>> >>>> >>>> >> To unsubscribe from this group and stop receiving emails
>>>> >>>> >>>> >> from
>>>> >>>> >>>> >> it, send
>>>> >>>> >>>> >> an
>>>> >>>> >>>> >> email to rabbitmq-users+unsubscribe@googlegroups.com.
>>>> >>>> >>>> >> To post to this group, send an email to
>>>> >>>> >>>> >> rabbitmq-users@googlegroups.com.
>>>> >>>> >>>> >> For more options, visit https://groups.google.com/d/optout.
>>>> >>>> >>>> >
>>>> >>>> >>>> >
>>>> >>>> >>>> >
>>>> >>>> >>>> >
>>>> >>>> >>>> > --
>>>> >>>> >>>> > MK
>>>> >>>> >>>> >
>>>> >>>> >>>> > Staff Software Engineer, Pivotal/RabbitMQ
>>>> >>>> >>>> >
>>>> >>>> >>>> > --
>>>> >>>> >>>> > You received this message because you are subscribed to a
>>>> >>>> >>>> > topic
>>>> >>>> >>>> > in the
>>>> >>>> >>>> > Google Groups "rabbitmq-users" group.
>>>> >>>> >>>> > To unsubscribe from this topic, visit
>>>> >>>> >>>> >
>>>> >>>> >>>> >
>>>> >>>> >>>> >
>>>> >>>> >>>> > https://groups.google.com/d/topic/rabbitmq-users/vUKM8MIsmEM/unsubscribe.
>>>> >>>> >>>> > To unsubscribe from this group and all its topics, send an
>>>> >>>> >>>> > to
>>>> >>>> >>>> > rabbitmq-users+unsubscribe@googlegroups.com.
>>>> >>>> >>>> > To post to this group, send email to
>>>> >>>> >>>> > rabbitmq-users@googlegroups.com.
>>>> >>>> >>>> > For more options, visit https://groups.google.com/d/optout.
>>>> >>>> >>>>
>>>> >>>> >>>> --
>>>> >>>> >>>> You received this message because you are subscribed to the
>>>> >>>> >>>> Groups
>>>> >>>> >>>> "rabbitmq-users" group.
>>>> >>>> >>>> To unsubscribe from this group and stop receiving emails from
>>>> >>>> >>>> it,
>>>> >>>> >>>> send an
>>>> >>>> >>>> email to rabbitmq-users+unsubscribe@googlegroups.com.
>>>> >>>> >>>> To post to this group, send an email to
>>>> >>>> >>>> rabbitmq-users@googlegroups.com.
>>>> >>>> >>>> For more options, visit https://groups.google.com/d/optout.
>>>> >>>> >>>
>>>> >>>> >>>
>>>> >>>> >>>
>>>> >>>> >>>
>>>> >>>> >>> --
>>>> >>>> >>> MK
>>>> >>>> >>>
>>>> >>>> >>> Staff Software Engineer, Pivotal/RabbitMQ
>>>> >>>> >>
>>>> >>>> >>
>>>> >>>> >>
>>>> >>>> >>
>>>> >>>> >> --
>>>> >>>> >> MK
>>>> >>>> >>
>>>> >>>> >> Staff Software Engineer, Pivotal/RabbitMQ
>>>> >>>> >>
>>>> >>>> >> --
>>>> >>>> >> You received this message because you are subscribed to a topic
>>>> >>>> >> in
>>>> >>>> >> the
>>>> >>>> >> Google Groups "rabbitmq-users" group.
>>>> >>>> >> To unsubscribe from this topic, visit
>>>> >>>> >>
>>>> >>>> >>
>>>> >>>> >> https://groups.google.com/d/topic/rabbitmq-users/vUKM8MIsmEM/unsubscribe.
>>>> >>>> >> To unsubscribe from this group and all its topics, send an email
>>>> >>>> >> to
>>>> >>>> >> rabbitmq-users+unsubscribe@googlegroups.com.
>>>> >>>> >> To post to this group, send email to
>>>> >>>> >> rabbitmq-users@googlegroups.com.
>>>> >>>> >> For more options, visit https://groups.google.com/d/optout.
>>>> >>>
>>>> >>>
>>>> >>>
>>>> >>>
>>>> >>> --
>>>> >>> MK
>>>> >>>
>>>> >>> Staff Software Engineer, Pivotal/RabbitMQ
>>>> >>>
>>>> >>> --
>>>> >>> You received this message because you are subscribed to the Google
>>>> >>> Groups
>>>> >>> "rabbitmq-users" group.
>>>> >>> To unsubscribe from this group and stop receiving emails from it,
>>>> >>> send an
>>>> >>> email to rabbitmq-users+unsubscribe@googlegroups.com.
>>>> >>> To post to this group, send email to rabbitmq-users@googlegroups.com.
>>>> >>> For more options, visit https://groups.google.com/d/optout.
>>>> >>
>>>> >>
>>>> >>
>>>> >>
>>>> >> --
>>>> >> Karl Nilsson
>>>> >>
>>>> >> Pivotal/RabbitMQ
>>>> >>
>>>> >> --
>>>> >> You received this message because you are subscribed to a topic in the
>>>> >> Google Groups "rabbitmq-users" group.
>>>> >> To unsubscribe from this topic, visit
>>>> >>
>>>> >> https://groups.google.com/d/topic/rabbitmq-users/vUKM8MIsmEM/unsubscribe.
>>>> >> To unsubscribe from this group and all its topics, send an email to
>>>> >> rabbitmq-users+unsubscribe@googlegroups.com.
>>>> >> To post to this group, send email to rabbitmq-users@googlegroups.com.
>>>> >> For more options, visit https://groups.google.com/d/optout.
>>>> >>
>>>> >>
>>>> >> --
>>>> >> You received this message because you are subscribed to the Google
>>>> >> Groups
>>>> >> "rabbitmq-users" group.
>>>> >> To unsubscribe from this group and stop receiving emails from it, send
>>>> >> an
>>>> >> email to rabbitmq-users+unsubscribe@googlegroups.com.
>>>> >> To post to this group, send email to rabbitmq-users@googlegroups.com.
>>>> >> For more options, visit https://groups.google.com/d/optout.
>>>> >
>>>> >
>>>> >
>>>> >
>>>> > --
>>>> > Karl Nilsson
>>>> >
>>>> > Pivotal/RabbitMQ
>>>> >
>>>> > --
>>>> > You received this message because you are subscribed to a topic in the
>>>> > Google Groups "rabbitmq-users" group.
>>>> > To unsubscribe from this topic, visit
>>>> >
>>>> > https://groups.google.com/d/topic/rabbitmq-users/vUKM8MIsmEM/unsubscribe.
>>>> > To unsubscribe from this group and all its topics, send an email to
>>>> > rabbitmq-users+unsubscribe@googlegroups.com.
>>>> > To post to this group, send email to rabbitmq-users@googlegroups.com.
>>>> > For more options, visit https://groups.google.com/d/optout.
>>>>
>>>> --
>>>> You received this message because you are subscribed to the Google Groups
>>>> "rabbitmq-users" group.
>>>> To unsubscribe from this group and stop receiving emails from it, send an
>>>> email to rabbitmq-users+unsubscribe@googlegroups.com.
>>>> To post to this group, send an email to rabbitmq-users@googlegroups.com.
>>>> For more options, visit https://groups.google.com/d/optout.
>>>
>>>
>>>
>>>
>>> --
>>> Karl Nilsson
>>>
>>> Pivotal/RabbitMQ
>>
>>
>>
>>
>> --
>> Karl Nilsson
>>
>> Pivotal/RabbitMQ
>>
>> --
>> You received this message because you are subscribed to a topic in the
>> Google Groups "rabbitmq-users" group.
>> To unsubscribe from this topic, visit
>> https://groups.google.com/d/topic/rabbitmq-users/vUKM8MIsmEM/unsubscribe.
>> To unsubscribe from this group and all its topics, send an email to
>> rabbitmq-users+unsubscribe@googlegroups.com.
>> To post to this group, send email to rabbitmq-users@googlegroups.com.
>> For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to the Google Groups "rabbitmq-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rabbitmq-users+unsubscribe@googlegroups.com.
To post to this group, send an email to rabbitmq-users@googlegroups.com.