1. MQ.configure({autoConnect: false})
2. You buffer a bunch of calls, e.g. declare some exchanges and
queues, before MQ.onLoad() gets called by the system.
3. Call MQ.connect()
It crashes inside Connection.as.
The fix is to make sure that MQ.connect() is called *before* any calls
to other MQ functions.
cr
Sorry, it's more correct to say that calling MQ.connect beforehand is
a workaround.
A fix would be to make sure any dispatched calls are not allowed until
MQ.connect has been dispatched first and the connection is "ready."
cr