gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[taler-taler-mdb] branch master updated: do not react badly if we get a


From: gnunet
Subject: [taler-taler-mdb] branch master updated: do not react badly if we get a gateway timeout, also limit long polling to a value most http proxies will support nicely
Date: Wed, 18 May 2022 18:33:59 +0200

This is an automated email from the git hooks/post-receive script.

grothoff pushed a commit to branch master
in repository taler-mdb.

The following commit(s) were added to refs/heads/master by this push:
     new 11f22a4  do not react badly if we get a gateway timeout, also limit 
long polling to a value most http proxies will support nicely
11f22a4 is described below

commit 11f22a4394efee08d832fbebab4f961d1bf5f578
Author: Christian Grothoff <christian@grothoff.org>
AuthorDate: Wed May 18 18:33:57 2022 +0200

    do not react badly if we get a gateway timeout, also limit long polling to 
a value most http proxies will support nicely
---
 src/main.c | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/src/main.c b/src/main.c
index f2e6a2d..c90b946 100644
--- a/src/main.c
+++ b/src/main.c
@@ -74,15 +74,14 @@ along with
  */
 #define _(s) (s)
 
-/* FIXME Adjusted Time out because low internet connection at 36C3 */
 #define BACKEND_POLL_TIMEOUT GNUNET_TIME_relative_multiply ( \
-    GNUNET_TIME_UNIT_MINUTES, 5)
+    GNUNET_TIME_UNIT_SECONDS, 30)
 
 /**
  * Set payment deadline below what will work with the snack machine.
  */
 #define PAY_TIMEOUT GNUNET_TIME_relative_multiply ( \
-    GNUNET_TIME_UNIT_MINUTES, 1)
+    GNUNET_TIME_UNIT_MINUTES, 2)
 
 /**
  * How long could it take at most for us to notify the Taler merchant
@@ -1473,7 +1472,9 @@ check_payment_cb (void *cls,
 
   GNUNET_assert (payment_activity == pa);
   pa->ogh = NULL;
-  if (MHD_HTTP_OK != hr->http_status)
+  if ( (MHD_HTTP_OK != hr->http_status) &&
+       (MHD_HTTP_GATEWAY_TIMEOUT != hr->http_status) &&
+       (MHD_HTTP_REQUEST_TIMEOUT != hr->http_status) )
   {
     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
                 "Backend request to /check-payment failed: %u/%d\n",

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]