summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2024-01-08 19:10:56 +0100
committerChristian Grothoff <christian@grothoff.org>2024-01-08 19:10:56 +0100
commit44b327f2d3f88b949651a8cb02c568f1ff3012d0 (patch)
tree07a9e0147bef3f321b42b11649522ad8ee668905 /src
parentb1373d1cff3dc922d31506d61c4fe0ddf260d6be (diff)
downloadexchange-44b327f2d3f88b949651a8cb02c568f1ff3012d0.tar.gz
exchange-44b327f2d3f88b949651a8cb02c568f1ff3012d0.tar.bz2
exchange-44b327f2d3f88b949651a8cb02c568f1ff3012d0.zip
-DCE
Diffstat (limited to 'src')
-rw-r--r--src/exchange/taler-exchange-expire.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/exchange/taler-exchange-expire.c b/src/exchange/taler-exchange-expire.c
index d99c430e0..207e7bdaf 100644
--- a/src/exchange/taler-exchange-expire.c
+++ b/src/exchange/taler-exchange-expire.c
@@ -74,11 +74,6 @@ static struct TALER_EXCHANGEDB_Plugin *db_plugin;
static struct GNUNET_SCHEDULER_Task *task;
/**
- * How long should we sleep when idle before trying to find more work?
- */
-static struct GNUNET_TIME_Relative expire_idle_sleep_interval;
-
-/**
* How big are the shards we are processing? Is an inclusive offset, so every
* shard ranges from [X,X+shard_size) exclusive. So a shard covers
* shard_size slots.
@@ -141,17 +136,6 @@ shutdown_task (void *cls)
static enum GNUNET_GenericReturnValue
parse_expire_config (void)
{
- if (GNUNET_OK !=
- GNUNET_CONFIGURATION_get_value_time (cfg,
- "exchange",
- "EXPIRE_IDLE_SLEEP_INTERVAL",
- &expire_idle_sleep_interval))
- {
- GNUNET_log_config_missing (GNUNET_ERROR_TYPE_ERROR,
- "exchange",
- "EXPIRE_IDLE_SLEEP_INTERVAL");
- return GNUNET_SYSERR;
- }
if (NULL ==
(db_plugin = TALER_EXCHANGEDB_plugin_load (cfg)))
{