Return-Path: X-Original-To: apmail-geode-commits-archive@minotaur.apache.org Delivered-To: apmail-geode-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 5514419A9E for ; Tue, 8 Mar 2016 01:41:22 +0000 (UTC) Received: (qmail 81706 invoked by uid 500); 8 Mar 2016 01:41:17 -0000 Delivered-To: apmail-geode-commits-archive@geode.apache.org Received: (qmail 81670 invoked by uid 500); 8 Mar 2016 01:41:17 -0000 Mailing-List: contact commits-help@geode.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@geode.incubator.apache.org Delivered-To: mailing list commits@geode.incubator.apache.org Received: (qmail 81661 invoked by uid 99); 8 Mar 2016 01:41:17 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd2-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 08 Mar 2016 01:41:17 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd2-us-west.apache.org (ASF Mail Server at spamd2-us-west.apache.org) with ESMTP id 9B4F01A08CD for ; Tue, 8 Mar 2016 01:41:16 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd2-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -3.549 X-Spam-Level: X-Spam-Status: No, score=-3.549 tagged_above=-999 required=6.31 tests=[KAM_ASCII_DIVIDERS=0.8, KAM_LAZY_DOMAIN_SECURITY=1, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H3=-0.01, RCVD_IN_MSPIKE_WL=-0.01, RP_MATCHES_RCVD=-0.329] autolearn=disabled Received: from mx2-lw-us.apache.org ([10.40.0.8]) by localhost (spamd2-us-west.apache.org [10.40.0.9]) (amavisd-new, port 10024) with ESMTP id ebnWLvsNcOp4 for ; Tue, 8 Mar 2016 01:41:15 +0000 (UTC) Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx2-lw-us.apache.org (ASF Mail Server at mx2-lw-us.apache.org) with SMTP id 43BAC5F2ED for ; Tue, 8 Mar 2016 01:41:15 +0000 (UTC) Received: (qmail 81561 invoked by uid 99); 8 Mar 2016 01:41:14 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 08 Mar 2016 01:41:14 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 93D25DFCF2; Tue, 8 Mar 2016 01:41:14 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: sai_boorlagadda@apache.org To: commits@geode.incubator.apache.org Date: Tue, 08 Mar 2016 01:41:14 -0000 Message-Id: <0e9512f6f3cc4c98a4a2e67870d82db2@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [01/45] incubator-geode git commit: GEODE-991: Marking LuceneFunction as in InternalEntity [Forced Update!] Repository: incubator-geode Updated Branches: refs/heads/feature/GEODE-52 cc5aca2fd -> b39a67ac3 (forced update) GEODE-991: Marking LuceneFunction as in InternalEntity This prevents LuceneFunction from showing up in the list functions command in gfsh. Project: http://git-wip-us.apache.org/repos/asf/incubator-geode/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-geode/commit/0ca2f2ea Tree: http://git-wip-us.apache.org/repos/asf/incubator-geode/tree/0ca2f2ea Diff: http://git-wip-us.apache.org/repos/asf/incubator-geode/diff/0ca2f2ea Branch: refs/heads/feature/GEODE-52 Commit: 0ca2f2ea16d09b67b3b7b3c723b0f02e35b577b3 Parents: e1a0830 Author: Dan Smith Authored: Wed Mar 2 14:12:52 2016 -0800 Committer: Dan Smith Committed: Wed Mar 2 14:21:08 2016 -0800 ---------------------------------------------------------------------- .../gemfire/cache/lucene/internal/distributed/LuceneFunction.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/0ca2f2ea/geode-lucene/src/main/java/com/gemstone/gemfire/cache/lucene/internal/distributed/LuceneFunction.java ---------------------------------------------------------------------- diff --git a/geode-lucene/src/main/java/com/gemstone/gemfire/cache/lucene/internal/distributed/LuceneFunction.java b/geode-lucene/src/main/java/com/gemstone/gemfire/cache/lucene/internal/distributed/LuceneFunction.java index c3b79c5..199b698 100644 --- a/geode-lucene/src/main/java/com/gemstone/gemfire/cache/lucene/internal/distributed/LuceneFunction.java +++ b/geode-lucene/src/main/java/com/gemstone/gemfire/cache/lucene/internal/distributed/LuceneFunction.java @@ -39,6 +39,7 @@ import com.gemstone.gemfire.cache.lucene.internal.repository.IndexRepository; import com.gemstone.gemfire.cache.lucene.internal.repository.IndexResultCollector; import com.gemstone.gemfire.cache.lucene.internal.repository.RepositoryManager; import com.gemstone.gemfire.cache.query.QueryException; +import com.gemstone.gemfire.internal.InternalEntity; import com.gemstone.gemfire.internal.cache.BucketNotFoundException; import com.gemstone.gemfire.internal.logging.LogService; @@ -47,7 +48,7 @@ import com.gemstone.gemfire.internal.logging.LogService; * and arguments like region and buckets. It invokes search on the local index and provides a result collector. The * locally collected results are sent to the search coordinator. */ -public class LuceneFunction extends FunctionAdapter { +public class LuceneFunction extends FunctionAdapter implements InternalEntity { private static final long serialVersionUID = 1L; public static final String ID = LuceneFunction.class.getName();