This is an automated email from the ASF dual-hosted git repository.
jmark99 pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/accumulo.git
The following commit(s) were added to refs/heads/main by this push:
new b63e51d Add two missing override annotations (#2526)
b63e51d is described below
commit b63e51de09db8518302f88705d9b1eb7c503a6e6
Author: Mark Owens <[email protected]>
AuthorDate: Thu Feb 24 17:14:14 2022 -0500
Add two missing override annotations (#2526)
Add two missing override annotations within the
MiniAccumuloClusterControl class.
---
.../org/apache/accumulo/miniclusterImpl/MiniAccumuloClusterControl.java | 2 ++
1 file changed, 2 insertions(+)
diff --git
a/minicluster/src/main/java/org/apache/accumulo/miniclusterImpl/MiniAccumuloClusterControl.java
b/minicluster/src/main/java/org/apache/accumulo/miniclusterImpl/MiniAccumuloClusterControl.java
index 6d9afd2..d0a580c 100644
---
a/minicluster/src/main/java/org/apache/accumulo/miniclusterImpl/MiniAccumuloClusterControl.java
+++
b/minicluster/src/main/java/org/apache/accumulo/miniclusterImpl/MiniAccumuloClusterControl.java
@@ -143,6 +143,7 @@ public class MiniAccumuloClusterControl implements
ClusterControl {
}
}
+ @Override
public synchronized void startCoordinator(Class<? extends
CompactionCoordinator> coordinator)
throws IOException {
if (coordinatorProcess == null) {
@@ -162,6 +163,7 @@ public class MiniAccumuloClusterControl implements
ClusterControl {
}
}
+ @Override
public synchronized void startCompactors(Class<? extends Compactor>
compactor, int limit,
String queueName) throws IOException {
synchronized (compactorProcesses) {