This is an automated email from the ASF dual-hosted git repository.
apurtell pushed a commit to branch branch-2
in repository https://gitbox.apache.org/repos/asf/hbase.git
The following commit(s) were added to refs/heads/branch-2 by this push:
new 5ce9339 HBASE-25521 Change ChoreService and ScheduledChore to
IA.Private (#3505)
5ce9339 is described below
commit 5ce93399729b5d897c953cea5ef1efb4b6f4c8e3
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 aaedc78..ccb2a72 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
@@ -40,7 +40,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);