move downstream logic to response middleware

master
TJ Holowaychuk 2013-09-01 16:27:03 -07:00
parent 37a7457d28
commit 7754a3535a
1 changed files with 4 additions and 4 deletions

View File

@ -160,6 +160,9 @@ app.onerror = function(err){
function respond(next){
return function *respond(){
this.status = 200;
if (this.app.poweredBy) this.set('X-Powered-By', 'koa');
yield next;
var app = this.app;
@ -222,10 +225,7 @@ function respond(next){
* @api private
*/
function *downstream() {
this.status = 200;
if (this.app.poweredBy) this.set('X-Powered-By', 'koa');
}
function *downstream(){}
/**
* Create a new `Context` constructor.