Skip to content

Commit 2f74d92

Browse files
committed
remove healthcheck response
1 parent ec51879 commit 2f74d92

File tree

1 file changed

+1
-2
lines changed
  • samples/bullmq-bullboard-redis/worker

1 file changed

+1
-2
lines changed

samples/bullmq-bullboard-redis/worker/index.mjs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,8 @@ const myWorker = new Worker(process.env.QUEUE, async (job) => {
1212
console.log('@@ job id: ', job.id);
1313
}, { connection });
1414

15-
import http from 'http';
1615

17-
// healthcheck endpoint
16+
import http from 'http';
1817
const server = http.createServer((req, res) => {
1918
if (connection.status === 'ready') {
2019
res.writeHead(200);

0 commit comments

Comments
 (0)