summaryrefslogtreecommitdiff
path: root/cmd/lspipeline/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/lspipeline/main.go')
-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()},
}