Douglas Wilson

Results 1985 comments of Douglas Wilson

> Do you mean Mysql timezone or the timezone of the machine/vm/container holding the Mysql server? I'm not 100% sure one. From the MySQL server documentation https://dev.mysql.com/doc/refman/8.0/en/datetime.html : > MySQL...

> I'm wondering how mikroorm gets it right for TIMESTAMP. Maybe just a lucky combination of circumstances. I'll have to dig further ... Yea, I'm curious on the same thing....

The reason the free connection was not used is because it failed a PING. As in, in your screenshot, it shows 1 free connection available, but then when this module...

Unfortunately unless you can provide me a way to reproduce the issue so I can debug it, I don't know the answer to those questions.

I've already explained why the connection was not used above. If you don't want to accept that answer, then I need more evidence to the contrary. What you just posted...

Gotcha. To determine why it has a timeout, you'll need to look out of your Node.js code and into either your network infrastructure or your MySQL server.

Thanks for the report. What version of this module are you using? It doesn't seem to the be latest version based on the line numbers in the stack trace.

Can you try again with the latest version to see if the issue is resolved or not? Any fix would require you to upgrade anyway. I'm not able to test...

Are you sure that error is not just coming back as the `err` argument in your callback? All parsing errors should be coming back in the callback, not through a...

I placed a `throw new Error()` on the line in your stack trace of the error, and indeed, it comes through the `err` argument in the callback. Unless you can...