-
Notifications
You must be signed in to change notification settings - Fork 3.4k
HBASE-29609 Upgrade checkstyle and Maven checkstyle plugin to fix site build failure #7321
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
Executed |
Do these versions work with Java 8 ? |
I guess we need this on every branch, otherwise the yestus checkstlye checks would also fail ? |
Thanks, good question. I just checked. Unfortunately these does not work with Java 8. These require at least Java 17. |
🎊 +1 overall
This message was automatically generated. |
RestoreBackupSystemTableProcedure is just being introduced on But as I see in #7317 the author used different syntax for the same switch. case RESTORE_BACKUP_SYSTEM_TABLE_DISABLE:
case RESTORE_BACKUP_SYSTEM_TABLE_PREPARE:
return; vs. case RESTORE_BACKUP_SYSTEM_TABLE_DISABLE, RESTORE_BACKUP_SYSTEM_TABLE_PREPARE:
return; The problem is with the latter (on master) because this is Java 14+ syntax. |
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.
+1 LGTM for branch-3+
Thank you for the heads up, I will update my backport |
🎊 +1 overall
This message was automatically generated. |
Signed-off-by: Istvan Toth <[email protected]> (cherry picked from commit 04d48ee)
…pache#7321)" This reverts commit 04d48ee.
No description provided.