Skip to content
This repository has been archived by the owner on Apr 24, 2024. It is now read-only.

Commit

Permalink
Fix uptime
Browse files Browse the repository at this point in the history
  • Loading branch information
hcodes committed May 16, 2015
1 parent bdef05a commit 07ed445
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/utils.js
Expand Up @@ -208,7 +208,7 @@ module.exports = {
* @return {string}
*/
uptime: function() {
return (Math.floor(process.uptime() * 1000) * 1000) + ' sec.';
return (Math.floor(process.uptime() * 1000) / 1000) + ' sec.';
},
/**
* Ok symbol.
Expand Down

0 comments on commit 07ed445

Please sign in to comment.