Return-Path: X-Original-To: apmail-falcon-commits-archive@minotaur.apache.org Delivered-To: apmail-falcon-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 B207417E54 for ; Mon, 13 Oct 2014 18:02:47 +0000 (UTC) Received: (qmail 27939 invoked by uid 500); 13 Oct 2014 18:02:47 -0000 Delivered-To: apmail-falcon-commits-archive@falcon.apache.org Received: (qmail 27910 invoked by uid 500); 13 Oct 2014 18:02:47 -0000 Mailing-List: contact commits-help@falcon.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@falcon.incubator.apache.org Delivered-To: mailing list commits@falcon.incubator.apache.org Received: (qmail 27901 invoked by uid 99); 13 Oct 2014 18:02:47 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 13 Oct 2014 18:02:47 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED,T_RP_MATCHES_RCVD X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO mail.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with SMTP; Mon, 13 Oct 2014 18:02:24 +0000 Received: (qmail 24795 invoked by uid 99); 13 Oct 2014 18:02:22 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 13 Oct 2014 18:02:22 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 9A33090F106; Mon, 13 Oct 2014 18:02:22 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: venkatesh@apache.org To: commits@falcon.incubator.apache.org Date: Mon, 13 Oct 2014 18:02:23 -0000 Message-Id: In-Reply-To: <05e3e71ffdb643a1942b6f8f8f7cde23@git.apache.org> References: <05e3e71ffdb643a1942b6f8f8f7cde23@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [2/3] git commit: FALCON-792 Integration test EntityManagerPaginationJerseyIT fails occasionally. Contributed by Balu Vellanki X-Virus-Checked: Checked by ClamAV on apache.org FALCON-792 Integration test EntityManagerPaginationJerseyIT fails occasionally. Contributed by Balu Vellanki Project: http://git-wip-us.apache.org/repos/asf/incubator-falcon/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-falcon/commit/813b4ff6 Tree: http://git-wip-us.apache.org/repos/asf/incubator-falcon/tree/813b4ff6 Diff: http://git-wip-us.apache.org/repos/asf/incubator-falcon/diff/813b4ff6 Branch: refs/heads/master Commit: 813b4ff6bcd21983adb5ceec3ecc9722d6dac3fd Parents: 2a31462 Author: Venkatesh Seetharam Authored: Mon Oct 13 10:45:37 2014 -0700 Committer: Venkatesh Seetharam Committed: Mon Oct 13 10:45:37 2014 -0700 ---------------------------------------------------------------------- CHANGES.txt | 3 +++ .../apache/falcon/resource/EntityManagerPaginationJerseyIT.java | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-falcon/blob/813b4ff6/CHANGES.txt ---------------------------------------------------------------------- diff --git a/CHANGES.txt b/CHANGES.txt index 1896b4e..b66eb49 100755 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -115,6 +115,9 @@ Trunk (Unreleased) OPTIMIZATIONS BUG FIXES + FALCON-792 Integration test EntityManagerPaginationJerseyIT fails + occasionally (Balu Vellanki via Venkatesh Seetharam) + FALCON-787 FalconCLI - Submit recipe failed (Sowmya Ramesh via Venkatesh Seetharam) http://git-wip-us.apache.org/repos/asf/incubator-falcon/blob/813b4ff6/webapp/src/test/java/org/apache/falcon/resource/EntityManagerPaginationJerseyIT.java ---------------------------------------------------------------------- diff --git a/webapp/src/test/java/org/apache/falcon/resource/EntityManagerPaginationJerseyIT.java b/webapp/src/test/java/org/apache/falcon/resource/EntityManagerPaginationJerseyIT.java index bd68e57..7021ea9 100644 --- a/webapp/src/test/java/org/apache/falcon/resource/EntityManagerPaginationJerseyIT.java +++ b/webapp/src/test/java/org/apache/falcon/resource/EntityManagerPaginationJerseyIT.java @@ -68,7 +68,7 @@ public class EntityManagerPaginationJerseyIT { public void testPagination() { ClientResponse response = context.service .path("api/entities/list/process/") - .queryParam("filterBy", "TYPE:PROCESS,STATUS:RUNNING") + .queryParam("filterBy", "TYPE:PROCESS") .queryParam("tags", "owner=producer@xyz.com, department=forecasting") .queryParam("orderBy", "name").queryParam("sortOrder", "desc").queryParam("offset", "2") .queryParam("numResults", "2").queryParam("fields", "status,tags")