Try different syntax

This commit is contained in:
Michael Jackson 2016-04-12 05:10:31 -07:00
parent f3c5dcee2b
commit 5435b3c788
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ const requestLogging = (redisURL) => {
const path = req.path
if (res.statusCode === 200 && path.charAt(path.length - 1) !== '/')
redisClient.zincrby('requests', 1, req.path)
redisClient.zincrby([ 'requests', 1, req.path ])
})
next()