mirror of
https://github.com/ZuneDev/MicrosoftIris.git
synced 2026-07-27 13:13:29 -07:00
Fix incorrect usage of connection URI in client
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user