summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <grothoff@gnunet.org>2023-04-18 20:24:10 +0200
committerChristian Grothoff <grothoff@gnunet.org>2023-04-18 20:24:10 +0200
commit8952a87b85a4b44233ff6a9191d3f773124f6407 (patch)
treef0c4f7c32b56d2ebb6be1a876b8b835a014177e4
parent8463572beae5c5e8df59e12107a8cecee3ea8680 (diff)
downloadexchange-8952a87b85a4b44233ff6a9191d3f773124f6407.tar.gz
exchange-8952a87b85a4b44233ff6a9191d3f773124f6407.tar.bz2
exchange-8952a87b85a4b44233ff6a9191d3f773124f6407.zip
avoid overloading of global variable
m---------contrib/gana0
-rw-r--r--src/exchange/taler-exchange-wirewatch.c20
2 files changed, 10 insertions, 10 deletions
diff --git a/contrib/gana b/contrib/gana
-Subproject bf43b20a0362ac19bcf1bab9c33215e55d8d9f3
+Subproject 7adfb722ac988170a31cdfd8132073eb7f2a6c4
diff --git a/src/exchange/taler-exchange-wirewatch.c b/src/exchange/taler-exchange-wirewatch.c
index 168e7b9b7..9f954c27f 100644
--- a/src/exchange/taler-exchange-wirewatch.c
+++ b/src/exchange/taler-exchange-wirewatch.c
@@ -495,12 +495,12 @@ transaction_completed (void)
* We got incoming transaction details from the bank. Add them
* to the database.
*
- * @param batch_size desired batch size
+ * @param wrap_size desired bulk insert size
* @param details array of transaction details
* @param details_length length of the @a details array
*/
static void
-process_reply (unsigned int batch_size,
+process_reply (unsigned int wrap_size,
const struct TALER_BANK_CreditDetails *details,
unsigned int details_length)
{
@@ -570,7 +570,7 @@ process_reply (unsigned int batch_size,
qs = db_plugin->reserves_in_insert (db_plugin->cls,
reserves,
details_length,
- batch_size,
+ wrap_size,
qss);
switch (qs)
{
@@ -581,7 +581,7 @@ process_reply (unsigned int batch_size,
case GNUNET_DB_STATUS_SOFT_ERROR:
GNUNET_log (GNUNET_ERROR_TYPE_INFO,
"Got DB soft error for batch2_reserves_in_insert (%u). Rolling back.\n",
- batch_size);
+ wrap_size);
handle_soft_error ();
return;
default:
@@ -686,25 +686,25 @@ static void
history_cb (void *cls,
const struct TALER_BANK_CreditHistoryResponse *reply)
{
- static int batch_mode = -2;
+ static int wrap_size = -2;
(void) cls;
- if (-2 == batch_mode)
+ if (-2 == wrap_size)
{
- const char *mode = getenv ("TALER_WIREWATCH_BATCH_SIZE");
+ const char *mode = getenv ("TALER_WIREWATCH_WARP_SIZE");
char dummy;
if ( (NULL == mode) ||
(1 != sscanf (mode,
"%d%c",
- &batch_mode,
+ &wrap_size,
&dummy)) )
{
if (NULL != mode)
GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
"Bad batch mode `%s' specified\n",
mode);
- batch_mode = 8; /* maximum supported is currently 8 */
+ wrap_size = 8; /* maximum supported is currently 8 */
}
}
GNUNET_assert (NULL == task);
@@ -715,7 +715,7 @@ history_cb (void *cls,
switch (reply->http_status)
{
case MHD_HTTP_OK:
- process_reply (batch_mode,
+ process_reply (wrap_size,
reply->details.success.details,
reply->details.success.details_length);
return;