friesendrywall

Results 21 comments of friesendrywall

Bump, I'd like to see those files.

I spent some time with this port trying to understand the reason for the NAKS. Is it possible that the issue could be in the MSC layer? Here is a...

client.changeUser only re synchronizes if the connection is active. The use case is external authorization with cookies. initial connection with fictitious user and token seems wrong to me. In my...

Well, the way logux/vuex is set up, it creates the client when ```createLogux``` is called. If the store isn't created then, the components mount will fail. If the auth mechanism...

To recreate is very simple, just call client.start() after another component with mixin/subscription has mounted. If a component mounts and subscribes, and then client.start() is called, those subscriptions don't happen.

In my estimation, this could work as desired without re throwing, like ``` try { conn.execute(sql, values, cb).once('end', () => { conn.release(); }); } catch (e) { conn.release(); return cb(e);...

The problem with the current behavior the way I see it is that all parameters have to be validated for not being typeof undefined, which is pretty cumbersome, otherwise the...

> The real problem with this is that the exception doesn't provide any information about what query failed. Makes debugging errors like that a nightmare. Could you clarify here, do...

Any more comment on this error? I've been using the above fix for some time, at least it helps to debug things, but perhaps there is some deeper reasoning. At...

I wonder if mqtt 5 is a good fit for aedes as presently structured. There are quite a few options that to utilize would require a more extensive middleware api....