Repository: spark Updated Branches: refs/heads/master f3da4bd72 -> b4034c3f8
[Minor] Fix test RetryingBlockFetcherSuite after changed config name Flakey due to the default retry interval being the same as our test's wait timeout. Author: Aaron Davidson <[email protected]> Closes #3972 from aarondav/fix-test and squashes the following commits: db77cab [Aaron Davidson] [Minor] Fix test after changed config name Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/b4034c3f Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/b4034c3f Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/b4034c3f Branch: refs/heads/master Commit: b4034c3f889bf24f60eb806802866b48e4cbe55c Parents: f3da4bd Author: Aaron Davidson <[email protected]> Authored: Fri Jan 9 09:20:16 2015 -0800 Committer: Aaron Davidson <[email protected]> Committed: Fri Jan 9 09:20:16 2015 -0800 ---------------------------------------------------------------------- .../apache/spark/network/shuffle/RetryingBlockFetcherSuite.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/spark/blob/b4034c3f/network/shuffle/src/test/java/org/apache/spark/network/shuffle/RetryingBlockFetcherSuite.java ---------------------------------------------------------------------- diff --git a/network/shuffle/src/test/java/org/apache/spark/network/shuffle/RetryingBlockFetcherSuite.java b/network/shuffle/src/test/java/org/apache/spark/network/shuffle/RetryingBlockFetcherSuite.java index 0191fe5..1ad0d72 100644 --- a/network/shuffle/src/test/java/org/apache/spark/network/shuffle/RetryingBlockFetcherSuite.java +++ b/network/shuffle/src/test/java/org/apache/spark/network/shuffle/RetryingBlockFetcherSuite.java @@ -54,13 +54,13 @@ public class RetryingBlockFetcherSuite { @Before public void beforeEach() { System.setProperty("spark.shuffle.io.maxRetries", "2"); - System.setProperty("spark.shuffle.io.retryWaitMs", "0"); + System.setProperty("spark.shuffle.io.retryWait", "0"); } @After public void afterEach() { System.clearProperty("spark.shuffle.io.maxRetries"); - System.clearProperty("spark.shuffle.io.retryWaitMs"); + System.clearProperty("spark.shuffle.io.retryWait"); } @Test --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
