Failed to subscribe to eventstream: init() got an unexpected keyword argument 'session'
Exception ignored in: <bound method EventStream.del of <eventstream.EventStream object at 0x76255d90>>
Traceback (most recent call last):
File "/home/pi/.local/lib/python3.5/site-packages/eventstream.py", line 48, in del
self.Disconnect()
File "/home/pi/.local/lib/python3.5/site-packages/eventstream.py", line 88, in Disconnect
self.Unregister()
File "/home/pi/.local/lib/python3.5/site-packages/eventstream.py", line 105, in Unregister
if self.event_stream_thread != threading.current_thread():
AttributeError: 'EventStream' object has no attribute 'event_stream_thread'
If possible, provide the steps you took to reproduce the issue.
A complete runnable program is good. (don't include your user/password or any sensitive info)
Paste your ouptut here
I have used the
What did you expect to see?
Paste your ouptut here
What did you see instead?
Paste your ouptut here
Does this issue reproduce with the latest release?
Please answer these questions before submitting your issue. Thanks!
What version of Python are you using (
python -V
)?Python 3.5.3
What operating system and processor architecture are you using (
python -c 'import platform; print(platform.uname());'
)?uname_result(system='Linux', node='XXXX', release='4.14.71-v7+', version='#1145 SMP Fri Sep 21 15:38:35 BST 2018', machine='armv7l', processor='')
Which Python packages do you have installed (run the
pip freeze
orpip3 freeze
command and paste output)?Which version of ffmpeg are you using (
ffmpeg -version
)?Which Arlo hardware do you have (camera types - [Arlo, Pro, Q, etc.], basestation model, etc.)?
Arlo Q
What did you do?
I have an arlo Q so no basestation. So I have modified the example to subscribe to events removing the basestations filter like this.
basestations = arlo.GetDevices()
then when I run
arlo.SubscribeToMotionEvents(basestations[0], callback)
I get the following error:
Failed to subscribe to eventstream: init() got an unexpected keyword argument 'session' Exception ignored in: <bound method EventStream.del of <eventstream.EventStream object at 0x76255d90>> Traceback (most recent call last): File "/home/pi/.local/lib/python3.5/site-packages/eventstream.py", line 48, in del self.Disconnect() File "/home/pi/.local/lib/python3.5/site-packages/eventstream.py", line 88, in Disconnect self.Unregister() File "/home/pi/.local/lib/python3.5/site-packages/eventstream.py", line 105, in Unregister if self.event_stream_thread != threading.current_thread(): AttributeError: 'EventStream' object has no attribute 'event_stream_thread'
If possible, provide the steps you took to reproduce the issue. A complete runnable program is good. (don't include your user/password or any sensitive info)
I have used the
What did you expect to see?
What did you see instead?
Does this issue reproduce with the latest release?