-
Notifications
You must be signed in to change notification settings - Fork 451
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
Cleanup of main branch #4747
Cleanup of main branch #4747
Conversation
* Remove log4j-1.2-api dependency except as a bridge in the binary assembly (left a note in the assemble/pom.xml) * Move log4j dependencies in core back to test scope. These were moved to the provided scope in apache#4743 to work around an issue because log4j-1.2-api was still used in the core module in 2.1; now that the legacy log4j stuff was removed from core in 3.1 and later, we can move these back to the test scope where they belong as apache#4558 intended * Specify the exact version for deprecation "since" parameters (3.1.0, instead of 3.1) * Drop the unused and deprecated `tserver.workq.threads` property * Remove a few unused imports and variables, and drop the legacy MeterRegistryFactory that was deprecated in 2.1.3 * Suppress some deprecation warnings and use var in a few places for readability * Delete unused test code in CompactionIT
import org.apache.hadoop.io.Text; | ||
import org.junit.jupiter.api.Test; | ||
|
||
public class ColumnVisibilityTest { | ||
|
||
@SuppressWarnings("deprecation") |
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.
Seeing these changes made me realize that maybe we could start removing some of the stuff that was deprecated re ColumnVisibility in 4.0.0.
Add legacy log4j API back as test dependency for hadoop minicluster, which fixes HadoopCredentialProviderTest
It looks like we still need log4j-1.2-api on the classpath for hadoop minicluster's runtime. So, I'll have to re-add that back in for any tests or mini accumulo that use it before this can be merged. |
Re-add log4j-1.2-api dependency in the proper scopes, as a required runtime dependency of hadoop-client-minicluster
It looks like I fixed all the issues with the dependencies, so I'll merge this now. |
Remove the property usage because it was removed in apache/accumulo#4747 This fixes #280
tserver.workq.threads
property