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
The broker has an issue with Python 3.10. Following the documentation, I simply ran amqtt and got the following stack trace:
Traceback (most recent call last):
File "/home/paul/.local/bin/amqtt", line 8, in
sys.exit(main())
File "/home/paul/.local/lib/python3.10/site-packages/amqtt/scripts/broker_script.py", line 76, in main
broker = Broker(config)
File "/home/paul/.local/lib/python3.10/site-packages/amqtt/broker.py", line 183, in init
self._broadcast_queue = asyncio.Queue(loop=self._loop)
File "/usr/lib/python3.10/asyncio/queues.py", line 34, in init
super().init(loop=loop)
File "/usr/lib/python3.10/asyncio/mixins.py", line 17, in init
raise TypeError(
TypeError: As of 3.10, the loop parameter was removed from Queue() since it is no longer necessary
The text was updated successfully, but these errors were encountered:
The broker has an issue with Python 3.10. Following the documentation, I simply ran
amqtt
and got the following stack trace:Traceback (most recent call last):
File "/home/paul/.local/bin/amqtt", line 8, in
sys.exit(main())
File "/home/paul/.local/lib/python3.10/site-packages/amqtt/scripts/broker_script.py", line 76, in main
broker = Broker(config)
File "/home/paul/.local/lib/python3.10/site-packages/amqtt/broker.py", line 183, in init
self._broadcast_queue = asyncio.Queue(loop=self._loop)
File "/usr/lib/python3.10/asyncio/queues.py", line 34, in init
super().init(loop=loop)
File "/usr/lib/python3.10/asyncio/mixins.py", line 17, in init
raise TypeError(
TypeError: As of 3.10, the loop parameter was removed from Queue() since it is no longer necessary
The text was updated successfully, but these errors were encountered: