Res.send not req.send you absolute knucklehead.

This commit is contained in:
mmcwilliams 2017-11-22 11:31:08 -05:00
parent cc509a7b57
commit dd74ba7218
1 changed files with 1 additions and 1 deletions

View File

@ -154,7 +154,7 @@ function rCounter (req, res, next) {
counter = intval._state.counter counter = intval._state.counter
} }
log.info('/counter', { method : req.method, set : set, counter : counter }) log.info('/counter', { method : req.method, set : set, counter : counter })
req.send({ counter : counter }) res.send({ counter : counter })
return next() return next()
} }