Skip to content

Commit

Permalink
and the last one (puzzle)
Browse files Browse the repository at this point in the history
  • Loading branch information
kkamkou committed Apr 3, 2018
1 parent 50eaa40 commit 895eb1d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/adapter/tcp.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ adapter.send = function (message, callback) {
cb(err);
})
.once('connect', function () {
// @todo! #37:60m add deflation with GELF 2.0
// @todo #37:60m add deflation with GELF 2.0
var msg = new Buffer(message.replace(/\x00/g, '')), // eslint-disable-line
packet = new Buffer(Array.prototype.slice.call(msg, 0, msg.length).concat(0x00));
client.end(packet, function () {
Expand Down

1 comment on commit 895eb1d

@0pdd
Copy link

@0pdd 0pdd commented on 895eb1d Apr 3, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Puzzle 37-7e52116e discovered in lib/adapter/tcp.js and submitted as #39. Please, remember that the puzzle was not necessarily added in this particular commit. Maybe it was added earlier, but we discovered it only now.

Please sign in to comment.