Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dnsviz/dnsviz.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'dnsviz/transport.py')
-rw-r--r--dnsviz/transport.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/dnsviz/transport.py b/dnsviz/transport.py
index efa8b17..8d46c3c 100644
--- a/dnsviz/transport.py
+++ b/dnsviz/transport.py
@@ -1403,7 +1403,7 @@ class _DNSQueryTransportManager:
self._event_map = {}
self._close = threading.Event()
- t = threading.Thread(target=self._loop)
+ t = threading.Thread(target=self._loop, daemon=True)
t.start()
def close(self):