Closed paranoid64 closed 4 months ago
I missed that in the migration guide, good catch! 👍 It's called identifier
now, you can see the complete signature of the client in the documentation.
Let me know if that helps!
Hi,
only managed to test it today. Had to change that too:
Delete without replacement: async with client.messages() as messages:
Code indented one to the left.
This: async for message in messages:
replace with: async for message in client.messages:
Then everything worked again. Thanks!
Hi,
i updated to the aiomqtt lib today and realized that I can no longer use client_is like this.
async with aiomqtt.Client(hostname=GL.config['mqtt']['server'], port=GL.config['mqtt']['port'], username=GL.config['mqtt']['username'], password=GL.config['mqtt']['password'], client_id=GL.config['mqtt']['client']) as client:
I get this error now:
Can anyone give me a hint as to what this is now?