Open Alexandre-Pe opened 3 years ago
That's what you should call but there could well be a bug.
Can you try adding synchronous_mode=True
to the PyArlo
code.
Even with synchronous_mode=True
the ArloBackgroundWorker and ArloEventStream threads are still up and running after calling arlo_account.stop()
and I can turn on/off my camera or take snapshots.
After a quick look at the code I think there is a bug there - the code will keep reconnecting.
I'll test it here and push a fix later.
Thank you !
Hey ! I was wondering if you found a fix for this bug ^^
Hello, I don't why but I couldn't logout from my arlo account. The Code
from pyaarlo import PyArlo
arlo_account = PyArlo(username=USERNAME, password=PASSWORD)
print(arlo_account.is_connected)
arlo_account.stop()
print(arlo_account.is_connected)
Expected outputTrue
False
Actual outputTrue
True
Even after calling
arlo_account.stop()
, I can still access the cameras, get snapshot, etc..., and the Arlo threads still exist. Is there something I didn't understand or is it a bug ?