-
Notifications
You must be signed in to change notification settings - Fork 4.1k
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
STORM-2020: Stop using sun internal classes. STORM-2021: Fix license. STORM-2022: fix FieldsTest #1606
Conversation
+1 LGTM |
@@ -704,12 +703,12 @@ public MockCollector() { | |||
|
|||
@Override | |||
public void emitDirect(int arg0, String arg1, List<Object> arg2, Object arg3) { | |||
throw new NotImplementedException(); | |||
throw new RuntimeException("NOT Implemented"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I prefer using UnsupportedOperationException in this case but since it's just a test code I'm OK.
+1 Thanks that's what I forgot to address. I saw relevant JIRA issue for this but can't find. |
I fixed a few other things that are also breaking the build on master. If you want me the break them apart I can. |
This time the failures really are unrelated :).
I am seeing a lot of timeouts to repository.apache.org and that cause the build failures. |
@revans2 I do not think you need to break them into different PRs as these are small set of changes. I can see build failures in travis with jdk 7 but they seem to be unrelated. |
+1 |
+1. I don't see a need to break them out. |
STORM-2021 is also related to 1.x-branch, so I've also downmerged. |
@HeartSaVioR thanks |
No description provided.