You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When running pytest --collect-only, I'm getting this on stderr without any immediately noticeable problem caused by that:
Exception ignored in: <function Host.__del__ at 0x7f01bee44400>
Traceback (most recent call last):
File "/home/lhellebr/git/robottelo/venv/lib64/python3.12/site-packages/broker/hosts.py", line 77, in __del__
self.close()
File "/home/lhellebr/git/robottelo/venv/lib64/python3.12/site-packages/broker/hosts.py", line 147, in close
if self._session is not None:
^^^^^^^^^^^^^
AttributeError: 'Satellite' object has no attribute '_session'
When investigating, I get to
if self._session is not None:
self._session.disconnect()
self._session = None
So it seems like _session is neither a session object nor None. At this point I'm stopping investigation as out of scope of what I'm doing.
$ broker --version | grep 'Broker 0'
Broker 0.6.2
The text was updated successfully, but these errors were encountered:
When running
pytest --collect-only
, I'm getting this on stderr without any immediately noticeable problem caused by that:When investigating, I get to
So it seems like
_session
is neither a session object norNone
. At this point I'm stopping investigation as out of scope of what I'm doing.The text was updated successfully, but these errors were encountered: