[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[taler-merchant] branch master updated: set initial value to fetch statu
From: |
gnunet |
Subject: |
[taler-merchant] branch master updated: set initial value to fetch status to 5 ms |
Date: |
Sun, 16 Aug 2020 16:53:17 +0200 |
This is an automated email from the git hooks/post-receive script.
grothoff pushed a commit to branch master
in repository merchant.
The following commit(s) were added to refs/heads/master by this push:
new 378cbac set initial value to fetch status to 5 ms
378cbac is described below
commit 378cbac194b4c7504b05bd9f338e7adb8b4c5d50
Author: Christian Grothoff <christian@grothoff.org>
AuthorDate: Sun Aug 16 16:53:14 2020 +0200
set initial value to fetch status to 5 ms
---
contrib/request_payment.en.must | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/contrib/request_payment.en.must b/contrib/request_payment.en.must
index a7fd0a6..e533c81 100644
--- a/contrib/request_payment.en.must
+++ b/contrib/request_payment.en.must
@@ -117,16 +117,16 @@ body {
}
};
req.onerror = function () {
- setTimeout(check, delayMs);
+ setTimeout(check, 5);
}
req.ontimeout = function () {
- setTimeout(check, delayMs);
+ setTimeout(check, 5);
}
req.timeout = delayMs;
req.open("GET", checkUrl);
req.send();
}
- setTimeout(check, 250);
+ setTimeout(check, 5);
</script>
<section id="main" class="content">
--
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [taler-merchant] branch master updated: set initial value to fetch status to 5 ms,
gnunet <=