diff options
author | Christian Grothoff <christian@grothoff.org> | 2021-03-09 22:55:35 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2021-03-09 22:55:35 +0100 |
commit | 2ae55e5e7ff366ed1e4602710663a25f2f85420f (patch) | |
tree | 0651bd36159184b46bd18bc1b80e6be4d257d3d1 | |
parent | ef0ccea3ca567eb45b6c41359d5f86dc01ff7395 (diff) |
disable confusing warning
-rw-r--r-- | src/backend/taler-merchant-httpd_exchanges.c | 8 |
1 files 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; } |