gdmoore

Results 3 comments of gdmoore

Actually I think this issue is invalid -- the hang appears to have been caused by my RPC callee attempting to unregister itself _during_ the call, as opposed to after...

The original issue is definitely incorrect but is the documentation right for this? From https://crossbar.io/docs/How-Registrations-Work/ `Using the registration ID, a callee can unregister the procedure at any time.` Based on...

meejah's response clarified it; I'm using asyncio so during my RPC call `asyncio.get_event_loop().call_soon(unregister)` works fine. Thanks.