summaryrefslogtreecommitdiff
path: root/cmd/addtoqueue
diff options
context:
space:
mode:
authorNick White <git@njw.name>2020-04-07 12:18:38 +0100
committerNick White <git@njw.name>2020-04-07 12:18:38 +0100
commit9fb0842f07320d47509865c689747d2c82379f3d (patch)
treec9f0d382cf57052d2765d7d933e1f4bb5859342d /cmd/addtoqueue
parentaf63449be98f1964b67981b2aedda0d2ea70fe6d (diff)
Remove unused OCR queue (was superceded by the ocrpage queue some time ago)
Diffstat (limited to 'cmd/addtoqueue')
-rw-r--r--cmd/addtoqueue/main.go3
1 files changed, 0 insertions, 3 deletions
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"},
}