Uh oh!
There was an error while loading. Please reload this page.
[SPARK-4397][Core] Cleanup 'import SparkContext._' in core - #3530
Conversation
SparkQA
commented
Dec 1, 2014
Test build #23977 has started for PR 3530 at commit
|
JoshRosen
commented
Dec 1, 2014
This is a really important fix, actually, since we ran into problems with IntelliJ's automatic import cleanup removing these: if we perform this import cleanup incrementally as part of other patches, then those patches will introduce build-breaks if they're cherry-picked into pre-1.2 versions of Spark. As a result, it's much better to do all of this cleanup in one pass, as you've done here. +1. |
SparkQA
commented
Dec 1, 2014
Test build #23977 has finished for PR 3530 at commit
|
AmplabJenkins
commented
Dec 1, 2014
Test PASSed. |
rxin
commented
Dec 2, 2014
Thanks. Merging in master. |
zzcclp
commented
Dec 2, 2014
Whether this PR will be merged into the branch 1.2? |
zsxwing
commented
Dec 2, 2014
No. This is for SPARK-4397(#3262) and #3262 wasn't merged to branch 1.2. |
This PR cleans up
import SparkContext._in core for SPARK-4397(#3262) to prove it really works well.