From 327f9e9f6ca0c4c5d9a741d4a05c9173b9ae909e Mon Sep 17 00:00:00 2001 From: Eirik Stanghelle Morland Date: Sun, 6 Sep 2026 21:12:08 +0200 Subject: [PATCH] Remove unused kill switch --- index.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/index.js b/index.js index ed7a1f1..ea36a40 100644 --- a/index.js +++ b/index.js @@ -1,7 +1,6 @@ const { start, queuePull } = require('./built/start') const queue = require('queue') -const ks = require('kill-switch') const bunyan = require('bunyan') const config = require('./config') const log = bunyan.createLogger({ name: 'queue-starter', hostname: config.hostname }) @@ -29,5 +28,3 @@ q.on('end', (err) => { log.info('Local docker queue end') start(config, q, cloudQueue) }) - -ks.autoStart()