Skip to content

Commit

Permalink
[minor] Remove unused argument.
Browse files Browse the repository at this point in the history
  • Loading branch information
AvianFlu committed Jun 11, 2012
1 parent 44490e6 commit 95d3e1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/forever.js
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@ forever.start = function (script, options) {
// #### @options {Object} Configuration for forever instance.
// Starts a script with forever as a daemon
//
forever.startDaemon = function (script, options, callback) {
forever.startDaemon = function (script, options) {
options = options || {};
options.uid = options.uid || utile.randomString(4).replace(/^\-/, '_');
options.logFile = forever.logFilePath(options.logFile || options.uid + '.log');
Expand Down

0 comments on commit 95d3e1a

Please sign in to comment.