Skip to content

Commit

Permalink
fix round-robin global var leak for fallback function. Closes #66
Browse files Browse the repository at this point in the history
  • Loading branch information
tj committed Oct 29, 2012
1 parent 604b5fa commit c1526be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/plugins/round-robin.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

module.exports = function(options){
options = options || {};
fallback = options.fallback || function(){};
var fallback = options.fallback || function(){};

return function(sock){

Expand Down

0 comments on commit c1526be

Please sign in to comment.