From 49b982db99a226b507c088706a89d6e3b5f39b86 Mon Sep 17 00:00:00 2001 From: Joe Fleming Date: Mon, 16 May 2016 14:09:42 -0700 Subject: [PATCH] change priority field to byte --- src/helpers/create_index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/helpers/create_index.js b/src/helpers/create_index.js index 9975103..f0f88bc 100644 --- a/src/helpers/create_index.js +++ b/src/helpers/create_index.js @@ -3,7 +3,7 @@ import { defaultSettings } from './constants'; const schema = { jobtype: { type: 'string', index: 'not_analyzed' }, payload: { type: 'object', enabled: false }, - priority: { type: 'short' }, + priority: { type: 'byte' }, timeout: { type: 'long' }, process_expiration: { type: 'date' }, created_by: { type: 'string', index: 'not_analyzed' },