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
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 output True False Actual output True 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 ?
The text was updated successfully, but these errors were encountered:
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.
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 output
True
False
Actual output
True
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 ?
The text was updated successfully, but these errors were encountered: