Skip to content
This repository has been archived by the owner on Mar 8, 2023. It is now read-only.

Commit

Permalink
plugins: fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
skenqbx committed Apr 23, 2015
1 parent 8e21193 commit 4912088
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/plugins/auth.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ AuthPlugin.prototype._setup = function() {
var self = this;
var rail = this._rail;

// rail.on('plugin-configure', function(call, options, request) {
// rail.on('plugin-configure', function(call, options) {
//
// });
};
2 changes: 1 addition & 1 deletion lib/plugins/cache.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ CachePlugin.prototype._setup = function() {
var self = this;
var rail = this._rail;

// rail.on('plugin-configure', function(call, options, request) {
// rail.on('plugin-configure', function(call, options) {
//
// });
};
2 changes: 1 addition & 1 deletion lib/plugins/redirect.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ function redirectPlugin(rail, opt_options) {


function interceptRequest(call, options, request) {
call.emit('redirect', options);
// send the request made in `interceptResponse` below
request.end();
call.emit('redirect', options);
}


Expand Down

0 comments on commit 4912088

Please sign in to comment.