Return-Path: X-Original-To: apmail-apex-commits-archive@minotaur.apache.org Delivered-To: apmail-apex-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 4972A17284 for ; Wed, 9 Sep 2015 22:12:48 +0000 (UTC) Received: (qmail 18102 invoked by uid 500); 9 Sep 2015 22:12:48 -0000 Delivered-To: apmail-apex-commits-archive@apex.apache.org Received: (qmail 17955 invoked by uid 500); 9 Sep 2015 22:12:48 -0000 Mailing-List: contact commits-help@apex.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@apex.incubator.apache.org Delivered-To: mailing list commits@apex.incubator.apache.org Received: (qmail 17782 invoked by uid 99); 9 Sep 2015 22:12:48 -0000 Received: from Unknown (HELO spamd3-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 09 Sep 2015 22:12:48 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd3-us-west.apache.org (ASF Mail Server at spamd3-us-west.apache.org) with ESMTP id A0EA018096B for ; Wed, 9 Sep 2015 22:12:47 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd3-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: 0.795 X-Spam-Level: X-Spam-Status: No, score=0.795 tagged_above=-999 required=6.31 tests=[KAM_ASCII_DIVIDERS=0.8, RP_MATCHES_RCVD=-0.006, URIBL_BLOCKED=0.001] autolearn=disabled Received: from mx1-eu-west.apache.org ([10.40.0.8]) by localhost (spamd3-us-west.apache.org [10.40.0.10]) (amavisd-new, port 10024) with ESMTP id AVGucvymdgNQ for ; Wed, 9 Sep 2015 22:12:35 +0000 (UTC) Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx1-eu-west.apache.org (ASF Mail Server at mx1-eu-west.apache.org) with SMTP id 4D32920645 for ; Wed, 9 Sep 2015 22:12:34 +0000 (UTC) Received: (qmail 15194 invoked by uid 99); 9 Sep 2015 22:12:33 -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; Wed, 09 Sep 2015 22:12:33 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 83AAEE0996; Wed, 9 Sep 2015 22:12:33 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: chetan@apache.org To: commits@apex.incubator.apache.org Date: Wed, 09 Sep 2015 22:13:04 -0000 Message-Id: <8d4078a58ec74a4ab8ce34fa7a196fc0@git.apache.org> In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [33/50] incubator-apex-core git commit: APEX-36: calling tmp file '_tmp' instead of '._COPYING_' which is reserved by hadoop APEX-36: calling tmp file '_tmp' instead of '._COPYING_' which is reserved by hadoop Project: http://git-wip-us.apache.org/repos/asf/incubator-apex-core/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-apex-core/commit/7560cefd Tree: http://git-wip-us.apache.org/repos/asf/incubator-apex-core/tree/7560cefd Diff: http://git-wip-us.apache.org/repos/asf/incubator-apex-core/diff/7560cefd Branch: refs/heads/master Commit: 7560cefd9cc5bd0a0463b59d83ad26ce5a11d70d Parents: 9d08532 Author: Chandni Singh Authored: Mon Aug 17 11:20:57 2015 -0700 Committer: Chandni Singh Committed: Mon Aug 17 12:29:59 2015 -0700 ---------------------------------------------------------------------- .../src/main/java/com/datatorrent/common/util/FSStorageAgent.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-apex-core/blob/7560cefd/common/src/main/java/com/datatorrent/common/util/FSStorageAgent.java ---------------------------------------------------------------------- diff --git a/common/src/main/java/com/datatorrent/common/util/FSStorageAgent.java b/common/src/main/java/com/datatorrent/common/util/FSStorageAgent.java index 14275fa..feb9ae2 100644 --- a/common/src/main/java/com/datatorrent/common/util/FSStorageAgent.java +++ b/common/src/main/java/com/datatorrent/common/util/FSStorageAgent.java @@ -42,7 +42,7 @@ import com.datatorrent.netlet.util.DTThrowable; */ public class FSStorageAgent implements StorageAgent, Serializable { - public static final String TMP_FILE = "._COPYING_"; + public static final String TMP_FILE = "_tmp"; protected static final String STATELESS_CHECKPOINT_WINDOW_ID = Long.toHexString(Stateless.WINDOW_ID); public final String path; protected final transient FileContext fileContext;