Merge pull request #128 from WebFreak001/fix-net-regression
remove refsLeft assert
This commit is contained in:
commit
177e761716
|
@ -217,10 +217,8 @@ TCPConnection connectTCP(NetworkAddress addr, NetworkAddress bind_address = anyA
|
||||||
": timeout");
|
": timeout");
|
||||||
|
|
||||||
if (status != ConnectStatus.connected) {
|
if (status != ConnectStatus.connected) {
|
||||||
if (sock != SocketFD.invalid) {
|
if (sock != SocketFD.invalid)
|
||||||
bool refsLeft = eventDriver.sockets.releaseRef(sock);
|
eventDriver.sockets.releaseRef(sock);
|
||||||
assert(!refsLeft);
|
|
||||||
}
|
|
||||||
|
|
||||||
enforce(false, "Failed to connect to "~addr.toString()~": "~status.to!string);
|
enforce(false, "Failed to connect to "~addr.toString()~": "~status.to!string);
|
||||||
assert(false);
|
assert(false);
|
||||||
|
|
Loading…
Reference in a new issue