Skip to content
This repository was archived by the owner on Jul 28, 2023. It is now read-only.

Commit af0a08b

Browse files
committed
appease travisCI
1 parent 6dbe81b commit af0a08b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

services/ndd_service.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -95,16 +95,16 @@ class NddService {
9595
const pipeName = `node-ndb.${process.pid}.sock`;
9696
this._pipe = path.join(pipePrefix, pipeName);
9797
const server = net.createServer(socket => {
98-
let chunks = [];
98+
const chunks = [];
9999
socket.on('data', async d => {
100-
chunks.push(d)
100+
chunks.push(d);
101101
});
102102
socket.on('end', async () => {
103103
const data = Buffer.concat(chunks);
104104
const runSession = await this._startSession(JSON.parse(data), frontend);
105105
socket.write('run');
106106
runSession();
107-
})
107+
});
108108
socket.on('error', e => caughtErrorDebug(e));
109109
}).listen(this._pipe);
110110
server.unref();

0 commit comments

Comments
 (0)