summaryrefslogtreecommitdiff
path: root/cmd/lspipeline
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/lspipeline
parentaf63449be98f1964b67981b2aedda0d2ea70fe6d (diff)
Remove unused OCR queue (was superceded by the ocrpage queue some time ago)
Diffstat (limited to 'cmd/lspipeline')
-rw-r--r--cmd/lspipeline/main.go2
1 files changed, 0 insertions, 2 deletions
diff --git a/cmd/lspipeline/main.go b/cmd/lspipeline/main.go
index 659b034..ab2f8b1 100644
--- a/cmd/lspipeline/main.go
+++ b/cmd/lspipeline/main.go
@@ -30,7 +30,6 @@ type LsPipeliner interface {
Init() error
PreQueueId() string
WipeQueueId() string
- OCRQueueId() string
OCRPageQueueId() string
AnalyseQueueId() string
GetQueueDetails(url string) (string, string, error)
@@ -66,7 +65,6 @@ func getQueueDetails(conn LsPipeliner, qdetails chan queueDetails) {
queues := []struct{ name, id string }{
{"preprocess", conn.PreQueueId()},
{"wipeonly", conn.WipeQueueId()},
- {"ocr", conn.OCRQueueId()},
{"ocrpage", conn.OCRPageQueueId()},
{"analyse", conn.AnalyseQueueId()},
}