Skip to content

Commit

Permalink
add missing parameter for changed function signature
Browse files Browse the repository at this point in the history
  • Loading branch information
Elmar Athmer committed Sep 22, 2014
1 parent db35b65 commit af12130
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/defaultCommandHandler.js
Original file line number Diff line number Diff line change
Expand Up @@ -614,7 +614,7 @@ _.extend(DefaultCommandHandler.prototype, {
var retryIn = randomBetween(0, self.options.retryOnConcurrencyTimeout); // could be overwritten in a custom commandHandler?
debug('retry in ' + retryIn + 'ms');
setTimeout(function() {
self.workflow(cmd, callback);
self.workflow(aggId, cmd, callback);
}, retryIn);
return;
}
Expand Down

1 comment on commit af12130

@adrai
Copy link
Contributor

@adrai adrai commented on af12130 Sep 22, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Uups will fix asap

Please sign in to comment.