-
Notifications
You must be signed in to change notification settings - Fork 2.3k
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
[hbase098] Fix checkstyle for HBase 0.98.x binding #902
Conversation
1604574
to
21c1858
Compare
I'll rebase this in a few minutes and push the changes. This is the only remaining binding that doesn't enforce checkstyle! |
21c1858
to
750c885
Compare
750c885
to
18d8b97
Compare
@busbey if you have any spare cycles to review this PR that would be greatly appreciated. It is the last of the checkstyle changes. |
I've been using https://github.com/brianfrankcooper/YCSB/pull/902/files?w=1 to check it to ignore the whitespace only changes. |
for (Thread t : allthreads) { | ||
try { | ||
t.join(); | ||
} catch (InterruptedException ignored) { |
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.
This is incorrect behavior. At a minimum the interrupted status for the current thread should be set.
It's a preexisting problem, not something from this fix, so I'd be fine with leaving it so long as there's an issue filed to fix it.
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.
Created issue #923
Thanks @busbey! |
Relates to #267 and supersedes #484