aboutsummaryrefslogtreecommitdiff
path: root/src/bank-lib/bank_api_debit.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2021-10-20 16:01:11 +0200
committerChristian Grothoff <christian@grothoff.org>2021-10-20 16:01:11 +0200
commitc13810ba2c43a63504269c646b438c2fd157d4ff (patch)
tree4433bcb4792e0310be7f3a8d3c80a33c777ae555 /src/bank-lib/bank_api_debit.c
parentc75a3a1921b84e000d73f7715e31049717dc6232 (diff)
downloadexchange-c13810ba2c43a63504269c646b438c2fd157d4ff.tar.xz
fix #7049: immediate restart of MHD when already running
Diffstat (limited to 'src/bank-lib/bank_api_debit.c')
-rw-r--r--src/bank-lib/bank_api_debit.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/bank-lib/bank_api_debit.c b/src/bank-lib/bank_api_debit.c
index 8cca0cc50..339dfef40 100644
--- a/src/bank-lib/bank_api_debit.c
+++ b/src/bank-lib/bank_api_debit.c
@@ -30,6 +30,13 @@
/**
+ * How much longer than the application-specified timeout
+ * do we wait (giving the server a chance to respond)?
+ */
+#define GRACE_PERIOD_MS 1000
+
+
+/**
* @brief A /history/outgoing Handle
*/
struct TALER_BANK_DebitHistoryHandle
@@ -307,7 +314,7 @@ TALER_BANK_debit_history (struct GNUNET_CURL_Context *ctx,
GNUNET_break (CURLE_OK ==
curl_easy_setopt (eh,
CURLOPT_TIMEOUT_MS,
- (long) tms));
+ (long) tms + GRACE_PERIOD_MS));
}
hh->job = GNUNET_CURL_job_add2 (ctx,
eh,