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;
|
ConnectionUri = connectionUri ?? DebugRemoting.DEFAULT_TCP_CLIENT_URI;
|
||||||
|
|
||||||
_socket = new();
|
_socket = new(connectionUri);
|
||||||
_socket.Connect(connectionUri);
|
|
||||||
|
|
||||||
_formatter = DebugRemoting.CreateBsonFormatter();
|
_formatter = DebugRemoting.CreateBsonFormatter();
|
||||||
|
|
||||||
System.Threading.Thread th = new(MessageRecieveLoop);
|
System.Threading.Thread th = new(MessageRecieveLoop);
|
||||||
|
|||||||
Reference in New Issue
Block a user