From 9fb0842f07320d47509865c689747d2c82379f3d Mon Sep 17 00:00:00 2001 From: Nick White Date: Tue, 7 Apr 2020 12:18:38 +0100 Subject: Remove unused OCR queue (was superceded by the ocrpage queue some time ago) --- cmd/addtoqueue/main.go | 3 --- 1 file changed, 3 deletions(-) (limited to 'cmd/addtoqueue') diff --git a/cmd/addtoqueue/main.go b/cmd/addtoqueue/main.go index 06edac5..c3284e9 100644 --- a/cmd/addtoqueue/main.go +++ b/cmd/addtoqueue/main.go @@ -21,7 +21,6 @@ This is handy to work around bugs when things are misbehaving. Valid queue names: - preprocess - wipeonly -- ocr - ocrpage - analyse ` @@ -38,7 +37,6 @@ type QueuePipeliner interface { AddToQueue(url string, msg string) error PreQueueId() string WipeQueueId() string - OCRQueueId() string OCRPageQueueId() string AnalyseQueueId() string } @@ -70,7 +68,6 @@ func main() { }{ {conn.PreQueueId(), "preprocess"}, {conn.WipeQueueId(), "wipeonly"}, - {conn.OCRQueueId(), "ocr"}, {conn.OCRPageQueueId(), "ocrpage"}, {conn.AnalyseQueueId(), "analyse"}, } -- cgit v1.2.1-24-ge1ad