Luciano Colosio
Luciano Colosio
Anyone has any news or work around for this? :(
I'm running node `0.10.30` and [here](http://pastebin.com/HGV7G0dj) are the logs :) thanks for help!!
That log line happens just before `poolCluster.getConnection();` The event loop is busy for 32 (or more) before arriving at that point, since it's transforming all the data. Mumble, I saw...
this is where those logs happen: ``` javascript return new Promise(function(resolve, reject) { logger.debug('mysql storage: getting connection to pool: ' + targetPool); poolCluster.getConnection(targetPool, function(err, connection) { logger.debug('mysql storage: got connection...
and even encasing the timeouts to 60seconds the [logs](http://pastebin.com/gb4YQjCy) are still the same. Mumble... Rx and bluebird might be adding something on top, in terms of blocking the eventloop here...
I'm actually running version `2.4.2`
cool, I'll update it anyway. My times zone is getting at the end right now, I'll add it tomorrow 1st thing in the morning. Also, if you suspect a bug,...
So, good morning I guess from the other side of the planet :) I updated the lib to 2.5.0 (and cloned it), added the trace code and [here](http://pastebin.com/9PjMfzwN) are the...
sure, [here](http://pastebin.com/aeTNy8av) it is
Adding some logs here and there in the lib: - Connnection.js -> connect(): ``` javascript console.log('>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> options.timeout: ', options.timeout); console.log('>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> this.config.connectTimeout: ', this.config.connectTimeout); if (!callback && typeof options === 'function')...