This is an automated email from the ASF dual-hosted git repository.

paksyd pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hbase.git


The following commit(s) were added to refs/heads/master by this push:
     new 403810df5f7 HBASE-29512 Add deprecation cycle for 
ServerTooBusyException's constructor (#7215)
403810df5f7 is described below

commit 403810df5f7af722840a54d871b060ac644ab890
Author: Dávid Paksy <[email protected]>
AuthorDate: Fri Aug 15 08:33:19 2025 +0200

    HBASE-29512 Add deprecation cycle for ServerTooBusyException's constructor 
(#7215)
    
    Signed-off-by: Nihal Jain <[email protected]>
    Signed-off-by: Duo Zhang <[email protected]>
---
 .../main/java/org/apache/hadoop/hbase/ipc/ServerTooBusyException.java  | 3 +++
 1 file changed, 3 insertions(+)

diff --git 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/ipc/ServerTooBusyException.java
 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/ipc/ServerTooBusyException.java
index 6c22ca94e42..b4ccaf9978d 100644
--- 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/ipc/ServerTooBusyException.java
+++ 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/ipc/ServerTooBusyException.java
@@ -33,6 +33,9 @@ public class ServerTooBusyException extends 
DoNotRetryIOException {
     super("Busy Server! " + count + " concurrent RPCs against " + address);
   }
 
+  /**
+   * @deprecated Since 1.7.0, 2.4.18 and 2.5.0, will be removed in 4.0.0.
+   */
   @Deprecated
   public ServerTooBusyException(InetSocketAddress address, long count) {
     super("Busy Server! " + count + " concurrent RPCs against " + address);

Reply via email to