Closed Emantor closed 5 years ago
you should not set this attribute: it is set internally during WAMP opening handshake
Thanks.
looking at your code, the fix is easy:
def onConnect(self):
...
self.join(self.config.realm,
authmethods=["ticket"],
authid="exporter/{}".format(self.name))
sidenote:
authid
andauthmethods
are keyword arguments - technically, you can use positional args, but this might break should we ever reorder those (and since the function is kwarg based, that would "not break the interface")
Most likely due to the introduction of setters in #1137. Tested with latest labgrid master and a bump to crossbar and autobahn.
Am I supposed to set the authid differently? Code is here.