Return-Path: X-Original-To: apmail-manifoldcf-commits-archive@www.apache.org Delivered-To: apmail-manifoldcf-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 97C6C17E90 for ; Tue, 4 Nov 2014 21:58:51 +0000 (UTC) Received: (qmail 87948 invoked by uid 500); 4 Nov 2014 21:58:50 -0000 Delivered-To: apmail-manifoldcf-commits-archive@manifoldcf.apache.org Received: (qmail 87895 invoked by uid 500); 4 Nov 2014 21:58:50 -0000 Mailing-List: contact commits-help@manifoldcf.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@manifoldcf.apache.org Delivered-To: mailing list commits@manifoldcf.apache.org Received: (qmail 87886 invoked by uid 99); 4 Nov 2014 21:58:49 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 04 Nov 2014 21:58:49 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 04 Nov 2014 21:58:27 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 4BA572388993; Tue, 4 Nov 2014 21:57:26 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1636746 - /manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/jobs/JobQueue.java Date: Tue, 04 Nov 2014 21:57:26 -0000 To: commits@manifoldcf.apache.org From: kwright@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20141104215726.4BA572388993@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: kwright Date: Tue Nov 4 21:57:25 2014 New Revision: 1636746 URL: http://svn.apache.org/r1636746 Log: Make prioritySet field be required Modified: manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/jobs/JobQueue.java Modified: manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/jobs/JobQueue.java URL: http://svn.apache.org/viewvc/manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/jobs/JobQueue.java?rev=1636746&r1=1636745&r2=1636746&view=diff ============================================================================== --- manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/jobs/JobQueue.java (original) +++ manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/jobs/JobQueue.java Tue Nov 4 21:57:25 2014 @@ -205,7 +205,7 @@ public class JobQueue extends org.apache map.put(statusField,new ColumnDescription("CHAR(1)",false,false,null,null,false)); map.put(isSeedField,new ColumnDescription("CHAR(1)",false,true,null,null,false)); map.put(docPriorityField,new ColumnDescription("FLOAT",false,true,null,null,false)); - map.put(prioritySetField,new ColumnDescription("BIGINT",false,true,null,null,false)); + map.put(prioritySetField,new ColumnDescription("BIGINT",false,false,null,null,false)); map.put(checkActionField,new ColumnDescription("CHAR(1)",false,true,null,null,false)); map.put(processIDField,new ColumnDescription("VARCHAR(16)",false,true,null,null,false)); map.put(seedingProcessIDField,new ColumnDescription("VARCHAR(16)",false,true,null,null,false));