Fix incorrect usage of connection URI in client

This commit is contained in:
Yoshi Askharoun
2023-05-29 20:28:46 -05:00
parent d01235e3f4
commit 0c641a7343
@@ -25,9 +25,7 @@ public class ZmqDebuggerClient : IDebuggerClient, IDisposable
{
ConnectionUri = connectionUri ?? DebugRemoting.DEFAULT_TCP_CLIENT_URI;
_socket = new();
_socket.Connect(connectionUri);
_socket = new(connectionUri);
_formatter = DebugRemoting.CreateBsonFormatter();
System.Threading.Thread th = new(MessageRecieveLoop);