-
Notifications
You must be signed in to change notification settings - Fork 29k
[SPARK-14462] [HOTFIX] Let DummyTestingSuite inherit FunSuite #12276
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
So I believe the plan is to not have mllib local depend on spark-core, so this probably isn't the fix we want (it might be better to roll back mllib-local if the master build is broken rather than trying to fix it) |
|
From SPARK-14462: If spark-core shouldn't be a dependency, we need to roll back mllib-local in order to unblock the build. |
|
ah ok if its intended then that makes sense. I think its still better to revert rather than try and fix master build. |
|
Test build #55443 has finished for PR 12276 at commit
|
|
@holdenk |
|
Test build #55450 has finished for PR 12276 at commit
|
|
@mengxr Let me know your preference. |
|
+@dbtsai We plan to follow |
|
@mengxr |
What changes were proposed in this pull request?
After [SPARK-14462] went in, build shows the following error:
This was due to missing dependency of spark-core module where Logging resides.
SparkFunSuite imports Logging.
I tried creating SparkFunNoLoggingSuite but then realized that it becomes FunSuite.
Current PR lets DummyTestingSuite inherit FunSuite so that mllib-local module doesn't depend on spark-core.
How was this patch tested?
Gone through maven build.