# HG changeset patch
# User Mahlon E. Smith <mahlon@martini.nu>
# Date 1442341720 25200
# Node ID ecde1a3326921173fe569687940c5a9671cb8420
# Parent  46cbb042f2cbb05287446b144d2697f3428a5655
I'm not sure how I missed this one.  Ssssh.  Nothing to see here.

diff -r 46cbb042f2cb -r ecde1a332692 mongrel2.nim
--- a/mongrel2.nim	Tue May 26 16:02:27 2015 -0700
+++ b/mongrel2.nim	Tue Sep 15 11:28:40 2015 -0700
@@ -426,8 +426,8 @@
     ## to.  Nothing is put into action until the run() method is invoked.
     new( result )
     result.handler_id    = id
-    result.request_sock  = zmq.connect( "tcp://127.0.0.1:9009", PULL )
-    result.response_sock = zmq.connect( "tcp://127.0.0.1:9008", PUB )
+    result.request_sock  = zmq.connect( req_sock, PULL )
+    result.response_sock = zmq.connect( res_sock, PUB )
 
 
 proc parse_request( request: string ): M2Request =