This is an automated email from the ASF dual-hosted git repository.
kwin 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 07a672b Add Awaitility library link in README
07a672b is described below
commit 07a672b7bd48e8b6346e95849ee0d6862a112388
Author: Konrad Windszus <[email protected]>
AuthorDate: Wed Oct 29 13:36:17 2025 +0100
Add Awaitility library link in README
Updated link for the Awaitility library in the README.
---
README.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/README.md b/README.md
index 088e0b5..4bf4bba 100644
--- a/README.md
+++ b/README.md
@@ -153,7 +153,7 @@ public class MyClient extends SlingClient {
```
## <a name="builder"></a> How to retry HTTP Requests
In several situations during IT Tests development, HTTP requests must be
retried until some assertions are verified.
-In such cases, a good approach is to use the `Awaitility` library. For example:
+In such cases, a good approach is to use the
[`Awaitility`](https://github.com/awaitility/awaitility) library. For example:
```java
public void testDoGetWithRetry() throws ClientException,
InterruptedException, TimeoutException {
SlingClient c = new SlingClient(httpServer.getURI(), "user", "pass");