This is an automated email from the ASF dual-hosted git repository. liuhongyu pushed a commit to branch fix/fix_doc in repository https://gitbox.apache.org/repos/asf/shenyu.git
commit 5acf65d6dd342b90da2d62d8ffad5b6517722d2d Author: liuhy <[email protected]> AuthorDate: Wed Apr 23 10:29:12 2025 +0800 [fix] fix java doc --- .../java/org/apache/shenyu/plugin/httpclient/CustomRetryStrategy.java | 2 +- .../java/org/apache/shenyu/plugin/httpclient/DefaultRetryStrategy.java | 2 +- .../shenyu/plugin/httpclient/ExponentialRetryBackoffStrategy.java | 2 +- .../java/org/apache/shenyu/plugin/httpclient/FixedRetryStrategy.java | 2 +- .../main/java/org/apache/shenyu/plugin/httpclient/RetryStrategy.java | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/shenyu-plugin/shenyu-plugin-httpclient/src/main/java/org/apache/shenyu/plugin/httpclient/CustomRetryStrategy.java b/shenyu-plugin/shenyu-plugin-httpclient/src/main/java/org/apache/shenyu/plugin/httpclient/CustomRetryStrategy.java index ffa782bc28..563d13e200 100644 --- a/shenyu-plugin/shenyu-plugin-httpclient/src/main/java/org/apache/shenyu/plugin/httpclient/CustomRetryStrategy.java +++ b/shenyu-plugin/shenyu-plugin-httpclient/src/main/java/org/apache/shenyu/plugin/httpclient/CustomRetryStrategy.java @@ -26,7 +26,7 @@ import reactor.core.publisher.Mono; /** * Custom retry policy. * Also please achieve your own - *@Date 2025/3/23 14:27 + * @since 2025/3/23 14:27 */ public class CustomRetryStrategy<R> implements RetryStrategy<R> { private static final Logger LOG = LoggerFactory.getLogger(CustomRetryStrategy.class); diff --git a/shenyu-plugin/shenyu-plugin-httpclient/src/main/java/org/apache/shenyu/plugin/httpclient/DefaultRetryStrategy.java b/shenyu-plugin/shenyu-plugin-httpclient/src/main/java/org/apache/shenyu/plugin/httpclient/DefaultRetryStrategy.java index 0e1bab5692..6c29e3e1a5 100644 --- a/shenyu-plugin/shenyu-plugin-httpclient/src/main/java/org/apache/shenyu/plugin/httpclient/DefaultRetryStrategy.java +++ b/shenyu-plugin/shenyu-plugin-httpclient/src/main/java/org/apache/shenyu/plugin/httpclient/DefaultRetryStrategy.java @@ -49,7 +49,7 @@ import reactor.util.retry.RetryBackoffSpec; * Default Retry Policy Class * Keep the original default request retry test without any changes. * @param <R> Request Response Type - * @Date 2025/3/23 08:36 + * @since 2025/3/23 08:36 */ public class DefaultRetryStrategy<R> implements RetryStrategy<R> { private static final Logger LOG = LoggerFactory.getLogger(DefaultRetryStrategy.class); diff --git a/shenyu-plugin/shenyu-plugin-httpclient/src/main/java/org/apache/shenyu/plugin/httpclient/ExponentialRetryBackoffStrategy.java b/shenyu-plugin/shenyu-plugin-httpclient/src/main/java/org/apache/shenyu/plugin/httpclient/ExponentialRetryBackoffStrategy.java index 3199ea30e9..233e80414d 100644 --- a/shenyu-plugin/shenyu-plugin-httpclient/src/main/java/org/apache/shenyu/plugin/httpclient/ExponentialRetryBackoffStrategy.java +++ b/shenyu-plugin/shenyu-plugin-httpclient/src/main/java/org/apache/shenyu/plugin/httpclient/ExponentialRetryBackoffStrategy.java @@ -29,7 +29,7 @@ import java.time.Duration; /** * Exponential Retry Backoff Strategy. * - * @Date 2025/3/23 14:20 + * @since 2025/3/23 14:20 */ public class ExponentialRetryBackoffStrategy<R> implements RetryStrategy<R> { private static final Logger LOG = LoggerFactory.getLogger(ExponentialRetryBackoffStrategy.class); diff --git a/shenyu-plugin/shenyu-plugin-httpclient/src/main/java/org/apache/shenyu/plugin/httpclient/FixedRetryStrategy.java b/shenyu-plugin/shenyu-plugin-httpclient/src/main/java/org/apache/shenyu/plugin/httpclient/FixedRetryStrategy.java index 8ddf6aeb4b..67185486ef 100644 --- a/shenyu-plugin/shenyu-plugin-httpclient/src/main/java/org/apache/shenyu/plugin/httpclient/FixedRetryStrategy.java +++ b/shenyu-plugin/shenyu-plugin-httpclient/src/main/java/org/apache/shenyu/plugin/httpclient/FixedRetryStrategy.java @@ -28,7 +28,7 @@ import java.time.Duration; /** * Fixed Retry Policy Class. * - * @Date 2025/3/23 10:04 + * @since 2025/3/23 10:04 */ public class FixedRetryStrategy<R> implements RetryStrategy<R> { private static final Logger LOG = LoggerFactory.getLogger(FixedRetryStrategy.class); diff --git a/shenyu-plugin/shenyu-plugin-httpclient/src/main/java/org/apache/shenyu/plugin/httpclient/RetryStrategy.java b/shenyu-plugin/shenyu-plugin-httpclient/src/main/java/org/apache/shenyu/plugin/httpclient/RetryStrategy.java index ad5747d5af..0093693ad9 100644 --- a/shenyu-plugin/shenyu-plugin-httpclient/src/main/java/org/apache/shenyu/plugin/httpclient/RetryStrategy.java +++ b/shenyu-plugin/shenyu-plugin-httpclient/src/main/java/org/apache/shenyu/plugin/httpclient/RetryStrategy.java @@ -26,7 +26,7 @@ import java.time.Duration; /** * Retry Policy Interface. * @param <R> Request Response Type - *@Date 2025/3/23 08:27 + * @since 2025/3/23 08:27 */ public interface RetryStrategy<R> { /**
