From 7693065b8b8a9eff1f17dc993ae1235984872e09 Mon Sep 17 00:00:00 2001
From: Nick White <git@njw.name>
Date: Tue, 19 Nov 2019 14:47:41 +0000
Subject: Add ocrpage queue for processing individual pages

This should be a good way to get around the ongoing heartbeat
issue, as individual page jobs will never come close to a the
12 hour mark that can cause the bug.

The OCR page processing is done and working now, still to do
is to populate the queue (rather than the ocr queue) after
preprocessing / wiping.
---
 cmd/mkpipeline/main.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'cmd/mkpipeline')

diff --git a/cmd/mkpipeline/main.go b/cmd/mkpipeline/main.go
index e37a56d..a32526a 100644
--- a/cmd/mkpipeline/main.go
+++ b/cmd/mkpipeline/main.go
@@ -34,7 +34,7 @@ func main() {
 
 	prefix := "rescribe"
 	buckets := []string{"inprogress", "done"}
-	queues := []string{"preprocess", "wipeonly", "ocr", "analyse"}
+	queues := []string{"preprocess", "wipeonly", "ocr", "analyse", "ocrpage"}
 
 	for _, bucket := range buckets {
 		bname := prefix + bucket
-- 
cgit v1.2.1-24-ge1ad