I'm running a large dependency tree of tasks, and one task halfway through the tree is regularly aborting to a timeout.
On investigation:
line 298 of task.js: if (now - this.startTime > jake._taskTimeout).
The this.startTime is null.
Would I be able to merge a fix where if it is null at this point we instead set it to now?
I'm running a large dependency tree of tasks, and one task halfway through the tree is regularly aborting to a timeout.
On investigation:
line 298 of task.js:
if (now - this.startTime > jake._taskTimeout).The
this.startTimeis null.Would I be able to merge a fix where if it is null at this point we instead set it to now?