Return-Path: X-Original-To: apmail-hadoop-common-dev-archive@www.apache.org Delivered-To: apmail-hadoop-common-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id BF814EC8C for ; Fri, 7 Dec 2012 17:09:25 +0000 (UTC) Received: (qmail 71343 invoked by uid 500); 7 Dec 2012 17:09:23 -0000 Delivered-To: apmail-hadoop-common-dev-archive@hadoop.apache.org Received: (qmail 70836 invoked by uid 500); 7 Dec 2012 17:09:22 -0000 Mailing-List: contact common-dev-help@hadoop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: common-dev@hadoop.apache.org Delivered-To: mailing list common-dev@hadoop.apache.org Received: (qmail 70245 invoked by uid 99); 7 Dec 2012 17:09:21 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 07 Dec 2012 17:09:21 +0000 Date: Fri, 7 Dec 2012 17:09:21 +0000 (UTC) From: "Costin Leau (JIRA)" To: common-dev@hadoop.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Created] (HADOOP-9123) Windows clients cannot create proper CP entries inside the DistributedCache MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 Costin Leau created HADOOP-9123: ----------------------------------- Summary: Windows clients cannot create proper CP entries inside the DistributedCache Key: HADOOP-9123 URL: https://issues.apache.org/jira/browse/HADOOP-9123 Project: Hadoop Common Issue Type: Bug Components: filecache, io, ipc Affects Versions: 1.0.4 Reporter: Costin Leau DistributedCache addArchive/FileToClassPath makes use of System.getProperty("path.separator"). This means that if the client (windows) is different then the server (linux) the classpath cannot be properly constructed since the client uses ; while the server uses :. As this is a platform specific setting it would be best to either use the server setting all the time or use a different character or property (that is not used inside the URI) and translate that to the platform specific character. The easiest fix would be to just use the *nix path separator, namely ":". -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators For more information on JIRA, see: http://www.atlassian.com/software/jira