-
Notifications
You must be signed in to change notification settings - Fork 53
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
Anyway doing the tracking more fast? #34
Comments
It should already work exactly the same. If it's not it's a bug. Can you elaborate more on what you're experiencing? |
I'm just experiencing a random delay instead of a near instant exit when I execute a CLI method. |
Node version and OS? Submitting a failing test would accelerate how fast this is fixed ;) |
node v0.10.33 on Mac OSX. |
I'm also experiencing this. 'use strict'
const Insight = require('insight');
const insight = new Insight(...);
if (process.argv[2] === 'track') {
insight.track('test');
} Also, I did some tests and I'm almost sure that if i call |
It appears that |
I think insight is blocking a process from exiting. I wonder if you can do like yeoman/update-notifier? and make a child process that is not blocking the main process from exiting?
The text was updated successfully, but these errors were encountered: