Repository: spark
Updated Branches:
  refs/heads/master e3f8a0336 -> c4bc2ed84


[SPARK-14963][MINOR][YARN] Fix typo in YarnShuffleService recovery file name

## What changes were proposed in this pull request?

Due to the changes of 
[SPARK-14963](https://issues.apache.org/jira/browse/SPARK-14963), external 
shuffle recovery file name is changed mistakenly, so here change it back to the 
previous file name.

This only affects the master branch, branch-2.0 is correct 
[here](https://github.com/apache/spark/blob/branch-2.0/common/network-yarn/src/main/java/org/apache/spark/network/yarn/YarnShuffleService.java#L195).

## How was this patch tested?

N/A

Author: jerryshao <ss...@hortonworks.com>

Closes #14197 from jerryshao/fix-typo-file-name.


Project: http://git-wip-us.apache.org/repos/asf/spark/repo
Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/c4bc2ed8
Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/c4bc2ed8
Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/c4bc2ed8

Branch: refs/heads/master
Commit: c4bc2ed844ea045d2e8218154690b5b2b023f1e5
Parents: e3f8a03
Author: jerryshao <ss...@hortonworks.com>
Authored: Thu Jul 14 08:31:04 2016 -0500
Committer: Tom Graves <tgra...@yahoo-inc.com>
Committed: Thu Jul 14 08:31:04 2016 -0500

----------------------------------------------------------------------
 .../java/org/apache/spark/network/yarn/YarnShuffleService.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/spark/blob/c4bc2ed8/common/network-yarn/src/main/java/org/apache/spark/network/yarn/YarnShuffleService.java
----------------------------------------------------------------------
diff --git 
a/common/network-yarn/src/main/java/org/apache/spark/network/yarn/YarnShuffleService.java
 
b/common/network-yarn/src/main/java/org/apache/spark/network/yarn/YarnShuffleService.java
index 9807383..8a05628 100644
--- 
a/common/network-yarn/src/main/java/org/apache/spark/network/yarn/YarnShuffleService.java
+++ 
b/common/network-yarn/src/main/java/org/apache/spark/network/yarn/YarnShuffleService.java
@@ -68,7 +68,7 @@ public class YarnShuffleService extends AuxiliaryService {
   private static final String SPARK_AUTHENTICATE_KEY = "spark.authenticate";
   private static final boolean DEFAULT_SPARK_AUTHENTICATE = false;
 
-  private static final String RECOVERY_FILE_NAME = "registeredExecutor.ldb";
+  private static final String RECOVERY_FILE_NAME = "registeredExecutors.ldb";
 
   // An entity that manages the shuffle secret per application
   // This is used only if authentication is enabled


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@spark.apache.org
For additional commands, e-mail: commits-h...@spark.apache.org

Reply via email to