From 95d4497e2b6cf56e7f772ce88865ca70f2ad5071 Mon Sep 17 00:00:00 2001 From: Ray Jenkins Date: Tue, 25 Jan 2022 13:20:31 -0600 Subject: [PATCH] Add python binding network thread name. --- bindings/python/fdb/impl.py | 1 + 1 file changed, 1 insertion(+) diff --git a/bindings/python/fdb/impl.py b/bindings/python/fdb/impl.py index d38582b459..6b4290cebc 100644 --- a/bindings/python/fdb/impl.py +++ b/bindings/python/fdb/impl.py @@ -1580,6 +1580,7 @@ def init(event_model=None): _network_thread = NetworkThread() _network_thread.daemon = True + _network_thread.name = "fdb-network-thread" if event_model is not None: if event_model == 'gevent':