fix worker master
This commit is contained in:
parent
df836bed77
commit
a109f571e3
2 changed files with 6 additions and 1 deletions
3
CHANGES
3
CHANGES
|
@ -1,3 +1,6 @@
|
||||||
|
2.0.4 2014-06-12
|
||||||
|
- Fix worker master
|
||||||
|
|
||||||
2.0.3 2014-06-11
|
2.0.3 2014-06-11
|
||||||
- Fix table encryption with UDP
|
- Fix table encryption with UDP
|
||||||
|
|
||||||
|
|
|
@ -423,7 +423,9 @@ class DNSResolver(object):
|
||||||
self._send_req(hostname, QTYPE_A)
|
self._send_req(hostname, QTYPE_A)
|
||||||
|
|
||||||
def close(self):
|
def close(self):
|
||||||
|
if self._sock:
|
||||||
self._sock.close()
|
self._sock.close()
|
||||||
|
self._sock = None
|
||||||
|
|
||||||
|
|
||||||
def test():
|
def test():
|
||||||
|
|
Loading…
Reference in a new issue