Hi everyone,<div><br></div><div>I am having some erlang client problems, I can&#39;t seem to get past the amqp_connection:start() phase, it just seems to halt at:�</div><div><br></div><div><div>** Found 0 name clashes in code paths�</div>

<div>&quot;test&quot;: &quot;state-1&quot;</div><div><br></div><div>=PROGRESS REPORT==== 17-Jun-2009::11:22:45 ===</div><div>�� � � � �supervisor: {local,inet_gethost_native_sup}</div><div>�� � � � � � started: [{pid,&lt;0.54.0&gt;},{mfa,{inet_gethost_native,init,[[]]}}]</div>

<div><br></div><div>=PROGRESS REPORT==== 17-Jun-2009::11:22:45 ===</div><div>�� � � � �supervisor: {local,kernel_safe_sup}</div><div>�� � � � � � started: [{pid,&lt;0.53.0&gt;},</div><div>�� � � � � � � � � � � {name,inet_gethost_native_sup},</div>

<div>�� � � � � � � � � � � {mfa,{inet_gethost_native,start_link,[]}},</div><div>�� � � � � � � � � � � {restart_type,temporary},</div><div>�� � � � � � � � � � � {shutdown,1000},</div><div>�� � � � � � � � � � � {child_type,worker}]</div>

<div><br></div><div>Here&#39;s the code:</div><div>----------------------------------------------------------------</div></div><div><br></div><div><div>-module(metrics_queue).</div><div>-export([amqp_lifecycle/0, send_message/5, log/2]).</div>

<div><br></div><div>-include_lib(&quot;rabbitmq-erlang-client/rabbitmq_server/include/rabbit.hrl&quot;).</div><div>-include_lib(&quot;rabbitmq-erlang-client/rabbitmq_server/include/rabbit_framing.hrl&quot;).</div><div>-include(&quot;rabbitmq-erlang-client/include/amqp_client.hrl&quot;).</div>

<div><br></div><div>-record(rabbit_info, {channel, ticket, exchange, routing_key}).</div><div><br></div><div>amqp_lifecycle() -&gt;</div><div>�� �User = Password = &quot;mixpanel&quot;,</div><div>�� �Realm = &lt;&lt;&quot;mixpanel&quot;&gt;&gt;, %% virtual_host</div>

<div>�� �log(&quot;test&quot;, &quot;state-1&quot;),</div><div>�� �Connection = amqp_connection:start(User, Password, &quot;127.0.0.1&quot;),</div><div>�� �log(&quot;test&quot;, &quot;state-2&quot;),</div><div>�� �Channel = amqp_connection:open_channel(Connection),</div>

<div>�� �Access = #&#39;access.request&#39;{</div><div>�� � � �realm = Realm,</div><div>�� � � �exclusive = false,</div><div>�� � � �passive = true,</div><div>�� � � �active = true,</div><div>�� � � �write = true,</div><div>

�� � � �read = true</div><div>�� �},</div></div><div><br>Any help is greatly appreciated
</div><div><br></div><div>Sincerely,</div><div>Suhail Doshi</div>