Return-Path: X-Original-To: apmail-aurora-commits-archive@minotaur.apache.org Delivered-To: apmail-aurora-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 4364211F96 for ; Thu, 24 Apr 2014 01:29:26 +0000 (UTC) Received: (qmail 79159 invoked by uid 500); 24 Apr 2014 01:29:25 -0000 Delivered-To: apmail-aurora-commits-archive@aurora.apache.org Received: (qmail 79118 invoked by uid 500); 24 Apr 2014 01:29:24 -0000 Mailing-List: contact commits-help@aurora.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@aurora.incubator.apache.org Delivered-To: mailing list commits@aurora.incubator.apache.org Received: (qmail 79109 invoked by uid 99); 24 Apr 2014 01:29:24 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 24 Apr 2014 01:29:24 +0000 X-ASF-Spam-Status: No, hits=-2000.7 required=5.0 tests=ALL_TRUSTED,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; Thu, 24 Apr 2014 01:29:24 +0000 Received: (qmail 79057 invoked by uid 99); 24 Apr 2014 01:29:00 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 24 Apr 2014 01:29:00 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 7F761990036; Thu, 24 Apr 2014 01:29:00 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: kevints@apache.org To: commits@aurora.incubator.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: git commit: Fix compilation of SlaGroup Date: Thu, 24 Apr 2014 01:29:00 +0000 (UTC) X-Virus-Checked: Checked by ClamAV on apache.org Repository: incubator-aurora Updated Branches: refs/heads/master 5de2b1ab3 -> 91ff94b7c Fix compilation of SlaGroup Project: http://git-wip-us.apache.org/repos/asf/incubator-aurora/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-aurora/commit/91ff94b7 Tree: http://git-wip-us.apache.org/repos/asf/incubator-aurora/tree/91ff94b7 Diff: http://git-wip-us.apache.org/repos/asf/incubator-aurora/diff/91ff94b7 Branch: refs/heads/master Commit: 91ff94b7c587b9d9c7c6a0a42dcc220bcfc4c192 Parents: 5de2b1a Author: Kevin Sweeney Authored: Wed Apr 23 18:28:40 2014 -0700 Committer: Kevin Sweeney Committed: Wed Apr 23 18:28:40 2014 -0700 ---------------------------------------------------------------------- src/main/java/org/apache/aurora/scheduler/sla/SlaGroup.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-aurora/blob/91ff94b7/src/main/java/org/apache/aurora/scheduler/sla/SlaGroup.java ---------------------------------------------------------------------- diff --git a/src/main/java/org/apache/aurora/scheduler/sla/SlaGroup.java b/src/main/java/org/apache/aurora/scheduler/sla/SlaGroup.java index 46be612..ff7e3cb 100644 --- a/src/main/java/org/apache/aurora/scheduler/sla/SlaGroup.java +++ b/src/main/java/org/apache/aurora/scheduler/sla/SlaGroup.java @@ -119,7 +119,7 @@ interface SlaGroup { return Multimaps.index(tasks, Functions.compose(new Function() { @Override public String apply(IJobKey jobKey) { - return "sla_" + JobKeys.canonicalString(jobKey) + "_"; + return "sla_" + JobKeys.toPath(jobKey) + "_"; } }, Tasks.SCHEDULED_TO_JOB_KEY)); }