From commits-return-5772-archive-asf-public=cust-asf.ponee.io@tez.apache.org Fri Feb 16 20:58:25 2018 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx-eu-01.ponee.io (Postfix) with SMTP id E47C4180647 for ; Fri, 16 Feb 2018 20:58:24 +0100 (CET) Received: (qmail 27453 invoked by uid 500); 16 Feb 2018 19:58:24 -0000 Mailing-List: contact commits-help@tez.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@tez.apache.org Delivered-To: mailing list commits@tez.apache.org Received: (qmail 27442 invoked by uid 99); 16 Feb 2018 19:58:24 -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; Fri, 16 Feb 2018 19:58:24 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id DEABEE01EC; Fri, 16 Feb 2018 19:58:23 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: jeagles@apache.org To: commits@tez.apache.org Message-Id: <4fda447ce06a40ea956048fa13315616@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: tez git commit: TEZ-3896. TestATSV15HistoryLoggingService#testNonSessionDomains is failing (Jason Lowe via jeagles) Date: Fri, 16 Feb 2018 19:58:23 +0000 (UTC) Repository: tez Updated Branches: refs/heads/master 022df7218 -> ab8b45eda TEZ-3896. TestATSV15HistoryLoggingService#testNonSessionDomains is failing (Jason Lowe via jeagles) Project: http://git-wip-us.apache.org/repos/asf/tez/repo Commit: http://git-wip-us.apache.org/repos/asf/tez/commit/ab8b45ed Tree: http://git-wip-us.apache.org/repos/asf/tez/tree/ab8b45ed Diff: http://git-wip-us.apache.org/repos/asf/tez/diff/ab8b45ed Branch: refs/heads/master Commit: ab8b45eda1e8355125a56787e665db79aeec1f3c Parents: 022df72 Author: Jonathan Eagles Authored: Fri Feb 16 13:57:42 2018 -0600 Committer: Jonathan Eagles Committed: Fri Feb 16 13:57:42 2018 -0600 ---------------------------------------------------------------------- .../dag/history/logging/ats/TestATSV15HistoryLoggingService.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tez/blob/ab8b45ed/tez-plugins/tez-yarn-timeline-history-with-fs/src/test/java/org/apache/tez/dag/history/logging/ats/TestATSV15HistoryLoggingService.java ---------------------------------------------------------------------- diff --git a/tez-plugins/tez-yarn-timeline-history-with-fs/src/test/java/org/apache/tez/dag/history/logging/ats/TestATSV15HistoryLoggingService.java b/tez-plugins/tez-yarn-timeline-history-with-fs/src/test/java/org/apache/tez/dag/history/logging/ats/TestATSV15HistoryLoggingService.java index 96c3c80..65ce91a 100644 --- a/tez-plugins/tez-yarn-timeline-history-with-fs/src/test/java/org/apache/tez/dag/history/logging/ats/TestATSV15HistoryLoggingService.java +++ b/tez-plugins/tez-yarn-timeline-history-with-fs/src/test/java/org/apache/tez/dag/history/logging/ats/TestATSV15HistoryLoggingService.java @@ -228,7 +228,8 @@ public class TestATSV15HistoryLoggingService { .setupSessionDAGACLs((Configuration)any(), eq(appId), eq("0"), (DAGAccessControls)any()); // All calls made with session domain id. - verify(historyACLPolicyManager, times(5)).updateTimelineEntityDomain(any(), eq("session-id")); + // NOTE: Expect 6 invocations for 5 history events because DAG_SUBMITTED becomes two separate timeline events. + verify(historyACLPolicyManager, times(6)).updateTimelineEntityDomain(any(), eq("session-id")); assertTrue(entityLog.size() > 0); service.stop();