Wyatt Greenway
Wyatt Greenway
I agree with all of this. I was cruising through all these exercises and then this one stumped me hard... this was the first one where I NEEDED the hint...
I second this. My project is built from multiple subprojects, and when a save a subproject it reloads before I can save changes across all subprojects. It is annoying to...
I have this same issue with vanilla node code... no exports, no transpiling. I confirmed without a doubt that the if path is taken (my tests wouldn't pass otherwise, but...
Can we get this merged and a new version released please?
Any idea when this PR will be merged? I am having the same issue where the Promise version is not catching this error and I just get an app crash
@sidorares I don't think any reproducible code needs to be shown. The situation is simple: A `throw` is happening inside a `nextTick` (without a try/catch in internal code). This will...
Further, this is the problem: `pool.js` ``` getConnection(cb) { if (this._closed) { return process.nextTick(() => cb(new Error('Pool is closed.'))); } let connection; if (this._freeConnections.length > 0) { connection = this._freeConnections.shift();...
I have tried every single "hack" or configuration setting I have found online, including everything found here: https://github.com/collectiveidea/delayed_job/issues/886 ABSOLUTELY NOTHING will stop DJ from outputting debug messages in my real...