1
0
mirror of https://github.com/ARM-software/devlib.git synced 2025-04-04 08:50:04 +01:00

target: Remove duplicated disconnection logic

The logic in Target.disconnect() appears to have been duplicated by
error. While _probably_ harmless, this is at least confusing, and since
this happens outside of the lock, this may actually be a real problem.
This commit is contained in:
Douglas Raillard 2025-01-30 15:21:26 +00:00 committed by Marc Bonnici
parent 20e5bcd2c7
commit a3765cc27d

View File

@ -548,15 +548,17 @@ class Target(object):
await check(as_root=True)
def disconnect(self):
connections = self._conn.get_all_values()
# Now that we have all the connection objects, we simply reset the TLS
# property so that the connections we got will not be reused anywhere.
with self._lock:
thread_conns = self._conn.get_all_values()
# Now that we have all the connection objects, we simply reset the
# TLS property so that the connections we obtained will not be
# reused anywhere.
del self._conn
unused_conns = self._unused_conns
unused_conns = list(self._unused_conns)
self._unused_conns.clear()
for conn in itertools.chain(connections, self._unused_conns):
for conn in itertools.chain(thread_conns, unused_conns):
conn.close()
pool = self._async_pool
@ -564,13 +566,6 @@ class Target(object):
if pool is not None:
pool.__exit__(None, None, None)
with self._lock:
connections = self._conn.get_all_values()
for conn in itertools.chain(connections, self._unused_conns):
conn.close()
if self._async_pool is not None:
self._async_pool.__exit__(None, None, None)
def __enter__(self):
return self