This is an automated email from the ASF dual-hosted git repository.
liuhongyu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/shenyu.git
The following commit(s) were added to refs/heads/master by this push:
new 532461ede0 [fix] fix java doc (#6008)
532461ede0 is described below
commit 532461ede0f5a8e0e8460de8219f3bdd9cca36d7
Author: aias00 <[email protected]>
AuthorDate: Wed Apr 23 13:06:57 2025 +0800
[fix] fix java doc (#6008)
---
.../java/org/apache/shenyu/plugin/httpclient/CustomRetryStrategy.java | 1 -
.../java/org/apache/shenyu/plugin/httpclient/DefaultRetryStrategy.java | 1 -
.../apache/shenyu/plugin/httpclient/ExponentialRetryBackoffStrategy.java | 1 -
.../java/org/apache/shenyu/plugin/httpclient/FixedRetryStrategy.java | 1 -
.../src/main/java/org/apache/shenyu/plugin/httpclient/RetryStrategy.java | 1 -
5 files changed, 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..cd98b498d5 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,6 @@ import reactor.core.publisher.Mono;
/**
* Custom retry policy.
* Also please achieve your own
- *@Date 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..c7a259c951 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,6 @@ 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
*/
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..d8972f8af0 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,6 @@ import java.time.Duration;
/**
* Exponential Retry Backoff Strategy.
*
- * @Date 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..116e65e8c2 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,6 @@ import java.time.Duration;
/**
* Fixed Retry Policy Class.
*
- * @Date 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..08df0e2c43 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,6 @@ import java.time.Duration;
/**
* Retry Policy Interface.
* @param <R> Request Response Type
- *@Date 2025/3/23 08:27
*/
public interface RetryStrategy<R> {
/**