-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
TypeError: Cannot read property 'row' of undefined #14
Comments
I'm also getting this error. I'm using it inside a promise chain as well, and it stops between 7425-8200 every time. |
Identical thing happening to me -- stops around 8645. Did either of you two figure out what was going on? |
I started stepping through the code and it looks like it's a problem with get-cursor-position. ProgressBar.prototype.render = function (output) {
if (this.output === output) {
return;
}
var current = getCursorPos.sync();
if (!current) {
return;
}
.... When it gets around that critical time (7425ish), |
/home/ec2-user/waa/node_modules/ascii-progress/index.js:442 TypeError: Cannot read property 'row' of undefined |
Hello! Thank you for this great module! I do have this problem also right out of the box. I've just copied the example from README:
|
Can confirm I have the same thing happening as @slavafomin, but only on my RedHat Jenkins instance. Running interactively from my Mac yields no problems. OS info:
|
I also see this running on my Jenkins platform. |
I also get this issue on Raspbian:
It's working fine on Ubuntu:
|
This error is thrown when I have multiple iterations that exceeds the number of opened files allowed,
EMFILE
on mac.reproduce:
result:
for me it stops at around
8800
The error is not thrown in this example, for me it is thrown when I use it inside a Promise chain.
The text was updated successfully, but these errors were encountered: