mirror of
https://github.com/ZuneDev/MicrosoftIris.git
synced 2026-07-27 13:13:29 -07:00
Fix incorrect usage of connection URI in server
This commit is contained in:
@@ -17,8 +17,7 @@ internal class ZmqDebuggerServer : IDebuggerServer, IDisposable
|
||||
|
||||
public ZmqDebuggerServer(string connectionUri)
|
||||
{
|
||||
_socket = new();
|
||||
_socket.Bind(connectionUri ?? DebugRemoting.DEFAULT_TCP_SERVER_URI);
|
||||
_socket = new(connectionUri ?? DebugRemoting.DEFAULT_TCP_SERVER_URI);
|
||||
|
||||
_formatter = DebugRemoting.CreateBsonFormatter();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user