From aafd6967bab61c0884e165965774894f4055ec6d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vin=C3=ADcius=20Ferr=C3=A3o?= <2031761+viniciusferrao@users.noreply.github.com> Date: Sun, 3 May 2026 01:46:35 -0300 Subject: [PATCH] Clean up iothread design rationale comment --- confluent_server/aiohmi/ipmi/private/session.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/confluent_server/aiohmi/ipmi/private/session.py b/confluent_server/aiohmi/ipmi/private/session.py index 5ab6d704..492162f0 100644 --- a/confluent_server/aiohmi/ipmi/private/session.py +++ b/confluent_server/aiohmi/ipmi/private/session.py @@ -56,9 +56,8 @@ except AttributeError: # session. This will be randomized to stagger out retries # in case of congestion initialtimeout = 0.5 -# the thread in which all IO will be performed -# This thread tucks away the threading situation such that -# calling code doesn't have to do any gymnastics. +# the thread in which all IO will be performed, so that +# calling code doesn't have to manage threading directly iothread = None # whether io thread is yet ready to work iothreadready = False