node v 7.0.0
Getting warning:
(node:8628) DeprecationWarning: Using Buffer without `new` will soon stop working. Use `new Buffer()`, or preferably `Buffer.from()`, `Buffer.allocUnsafe()` or `Buffer.alloc()` instead.
from these line
// lib/connection.js line: 299
var emptyBuffer = Buffer(0);
+1
+1
It's flooding my logs, how do I fix this?
@TyrfingMjolnir
To avoid flood, you may use node with --no-warnings temporarily
+1
@alpertuna thanks, it's work pending fix
It looks warning is over with Nodejs 7.2.1
@alpertuna Can confirm, thanks for the heads-up.
The warning is removed with Node 7.2.1, and some variant of #1154 should take care of the cause.
Most helpful comment
@TyrfingMjolnir
To avoid flood, you may use
nodewith--no-warningstemporarily