Skip to content
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

[TIMOB-17007] Fixed bug where analytics would get stuck in an infinite l... #92

Merged
merged 1 commit into from
May 21, 2014
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
0.2.6 (5/21/2014)
-------------------
* Fixed bug where analytics would get stuck in an infinite loop if another process was trying to send analytics [TIMOB-17007]

0.2.5 (5/19/2014)
-------------------
* More tweaks to the analytics handling to prevent analytics from being run more than once at a time [TIMOB-16979]
Expand Down
1 change: 1 addition & 0 deletions lib/analytics.js
Original file line number Diff line number Diff line change
Expand Up @@ -239,6 +239,7 @@ process.on('message', function onMessage(args) {
process.exit(0);
} catch (e) {
// not running, continue!
break;
}
}

Expand Down