Skip to content

Commit

Permalink
fixed service
Browse files Browse the repository at this point in the history
  • Loading branch information
agate committed Jul 18, 2013
1 parent 9e90ffe commit 8d5fda2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/upbeat/service.ms
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export class Service {

for (var name in config.actions) {
var aconfig = config.actions[name];
aconfig.name = name;
aconfig.name = aconfig.name || name;
aconfig.service = this;
this.addAction(new Action(aconfig));
}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "Fast health and performance monitoring with process handling",
"keywords": ["javascript", "performance", "health", "monitoring", "monit", "haproxy", "forever", "process", "systems"],
"author": "Jeff Su <me@jeffsu.com>",
"version": "0.2.3-pre5",
"version": "0.2.3-pre6",
"licenses": [{ "type": "MIT" }],
"engines": { "node": ">=0.5.0" },
"directories" : { "lib" : "./lib/upbeat" },
Expand Down

0 comments on commit 8d5fda2

Please sign in to comment.