This is an automated email from the ASF dual-hosted git repository.
apurtell pushed a commit to branch branch-2.4
in repository https://gitbox.apache.org/repos/asf/hbase.git
The following commit(s) were added to refs/heads/branch-2.4 by this push:
new b42676c HBASE-25521 Change ChoreService and ScheduledChore to
IA.Private (#3505)
b42676c is described below
commit b42676c29df2670307daf827f4222301a3722f93
Author: Andrew Purtell <[email protected]>
AuthorDate: Thu Jul 22 08:59:44 2021 -0700
HBASE-25521 Change ChoreService and ScheduledChore to IA.Private (#3505)
Signed-off-by: Bharath Vissapragada <[email protected]>
Signed-off-by: Duo Zhang <[email protected]>
Signed-off-by Reid Chan <[email protected]>
---
hbase-common/src/main/java/org/apache/hadoop/hbase/ChoreService.java | 2 +-
hbase-common/src/main/java/org/apache/hadoop/hbase/ScheduledChore.java | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git
a/hbase-common/src/main/java/org/apache/hadoop/hbase/ChoreService.java
b/hbase-common/src/main/java/org/apache/hadoop/hbase/ChoreService.java
index 9540d84..8786c5a 100644
--- a/hbase-common/src/main/java/org/apache/hadoop/hbase/ChoreService.java
+++ b/hbase-common/src/main/java/org/apache/hadoop/hbase/ChoreService.java
@@ -50,7 +50,7 @@ import org.slf4j.LoggerFactory;
* When finished with a ChoreService it is good practice to call {@link
ChoreService#shutdown()}.
* Calling this method ensures that all scheduled chores are cancelled and
cleaned up properly.
*/
[email protected]
[email protected]
public class ChoreService {
private static final Logger LOG =
LoggerFactory.getLogger(ChoreService.class);
diff --git
a/hbase-common/src/main/java/org/apache/hadoop/hbase/ScheduledChore.java
b/hbase-common/src/main/java/org/apache/hadoop/hbase/ScheduledChore.java
index 6155bbd..ac370d8 100644
--- a/hbase-common/src/main/java/org/apache/hadoop/hbase/ScheduledChore.java
+++ b/hbase-common/src/main/java/org/apache/hadoop/hbase/ScheduledChore.java
@@ -38,7 +38,7 @@ import org.slf4j.LoggerFactory;
* Don't subclass ScheduledChore if the task relies on being woken up for
something to do, such as
* an entry being added to a queue, etc.
*/
[email protected]
[email protected]
public abstract class ScheduledChore implements Runnable {
private static final Logger LOG =
LoggerFactory.getLogger(ScheduledChore.class);