This is an automated email from the ASF dual-hosted git repository.
dulvac pushed a commit to branch master
in repository
https://gitbox.apache.org/repos/asf/sling-org-apache-sling-testing-clients.git
The following commit(s) were added to refs/heads/master by this push:
new a7e1522 SLING-9329 Implement configurable retries mechanism for http
5XX response codes
a7e1522 is described below
commit a7e1522a3715519f7acb70017c7716e7feb5a7fd
Author: Andrei Dulvac <[email protected]>
AuthorDate: Fri Apr 3 18:14:42 2020 +0200
SLING-9329 Implement configurable retries mechanism for http 5XX response
codes
---
.../org/apache/sling/testing/clients/Constants.java | 20 ++++++++++----------
1 file changed, 10 insertions(+), 10 deletions(-)
diff --git a/src/main/java/org/apache/sling/testing/clients/Constants.java
b/src/main/java/org/apache/sling/testing/clients/Constants.java
index f8524d6..c9c1488 100644
--- a/src/main/java/org/apache/sling/testing/clients/Constants.java
+++ b/src/main/java/org/apache/sling/testing/clients/Constants.java
@@ -46,32 +46,32 @@ public class Constants {
private static String retryCodes = "";
/**
- * System property for {@see HTTP_DELAY}
- * Prefixed by {@see CONFIG_PROP_PREFIX}
+ * System property for {@link Constants#HTTP_DELAY}
+ * Prefixed by {@link Constants#CONFIG_PROP_PREFIX}
*/
public static final String HTTP_DELAY_PROP = "http.delay";
/**
- * System property for {@see HTTP_RETRIES}
- * Prefixed by {@see CONFIG_PROP_PREFIX}
+ * System property for {@link Constants#HTTP_RETRIES}
+ * Prefixed by {@link Constants#CONFIG_PROP_PREFIX}
*/
public static final String HTTP_RETRIES_PROP = "http.retries";
/**
- * System property for {@see HTTP_RETRIES_DELAY}
- * Prefixed by {@see CONFIG_PROP_PREFIX}
+ * System property for {@link Constants#HTTP_RETRIES_DELAY}
+ * Prefixed by {@link Constants#CONFIG_PROP_PREFIX}
*/
public static final String HTTP_RETRIES_DELAY_PROP = "http.retriesDelay";
/**
- * System property for {@see HTTP_LOG_RETRIES}
- * Prefixed by {@see CONFIG_PROP_PREFIX}
+ * System property for {@link Constants#HTTP_LOG_RETRIES}
+ * Prefixed by {@link Constants#CONFIG_PROP_PREFIX}
*/
public static final String HTTP_LOG_RETRIES_PROP = "http.logRetries";
/**
- * System property for {@see HTTP_RETRIES_ERROR_CODES}
- * Prefixed by {@see CONFIG_PROP_PREFIX}
+ * System property for {@link Constants#HTTP_RETRIES_ERROR_CODES}
+ * Prefixed by {@link Constants#CONFIG_PROP_PREFIX}
*/
public static final String HTTP_RETRIES_ERROR_CODES_PROP =
"http.retriesErrorCodes";