summaryrefslogtreecommitdiff
path: root/src/backend/taler-merchant-httpd_exchanges.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2021-03-09 22:55:35 +0100
committerChristian Grothoff <christian@grothoff.org>2021-03-09 22:55:35 +0100
commit2ae55e5e7ff366ed1e4602710663a25f2f85420f (patch)
tree0651bd36159184b46bd18bc1b80e6be4d257d3d1 /src/backend/taler-merchant-httpd_exchanges.c
parentef0ccea3ca567eb45b6c41359d5f86dc01ff7395 (diff)
downloadmerchant-2ae55e5e7ff366ed1e4602710663a25f2f85420f.tar.gz
merchant-2ae55e5e7ff366ed1e4602710663a25f2f85420f.tar.bz2
merchant-2ae55e5e7ff366ed1e4602710663a25f2f85420f.zip
disable confusing warning
Diffstat (limited to 'src/backend/taler-merchant-httpd_exchanges.c')
-rw-r--r--src/backend/taler-merchant-httpd_exchanges.c8
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;
}