gnunet-svn
[Top][All Lists]
Advanced

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

[taler-merchant] branch master updated: disable confusing warning


From: gnunet
Subject: [taler-merchant] branch master updated: disable confusing warning
Date: Tue, 09 Mar 2021 22:55:38 +0100

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 2ae55e5e disable confusing warning
2ae55e5e is described below

commit 2ae55e5e7ff366ed1e4602710663a25f2f85420f
Author: Christian Grothoff <christian@grothoff.org>
AuthorDate: Tue Mar 9 22:55:35 2021 +0100

    disable confusing warning
---
 src/backend/taler-merchant-httpd_exchanges.c | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/src/backend/taler-merchant-httpd_exchanges.c 
b/src/backend/taler-merchant-httpd_exchanges.c
index 61389fe1..5cdc5643 100644
--- a/src/backend/taler-merchant-httpd_exchanges.c
+++ b/src/backend/taler-merchant-httpd_exchanges.c
@@ -564,9 +564,11 @@ process_find_operations (struct Exchange *exchange)
       if (NULL == fbw)
       {
         need_wire = true;
-        GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
-                    "Exchange does not support `%s' wire method (will retry 
later)\n",
-                    fo->wire_method);
+        /* Do not warn if this is before our first attempt */
+        if (0 != exchange->wire_retry_delay.rel_value_us)
+          GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
+                      "Exchange does not support `%s' wire method (will retry 
later)\n",
+                      fo->wire_method);
         fbw = NULL;
         continue;
       }

-- 
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]