Closed paolodm closed 11 years ago
Reggie uses Restify's response.send() incorrectly. It should be status code then body, i.e.
res.send(500, err)
Currently, reggie does it the other way: res.send(err, 500)
res.send(err, 500)
Fixed.
Reggie uses Restify's response.send() incorrectly. It should be status code then body, i.e.
Currently, reggie does it the other way:
res.send(err, 500)