diff options
author | Christian Grothoff <christian@grothoff.org> | 2024-11-10 17:22:31 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2024-11-10 17:22:44 +0100 |
commit | 9508cb1806608274262f70efee9d43630b81ccd3 (patch) | |
tree | a475e295aa36dd165278bd36a2a75d2ff3469512 /src/benchmark/taler-aggregator-benchmark.c | |
parent | 0e68462e9040c2cbb536d0b0f797fa2e7aab064a (diff) |
ensure we do not start if the database version is outdated (#9203)
Diffstat (limited to 'src/benchmark/taler-aggregator-benchmark.c')
-rw-r--r-- | src/benchmark/taler-aggregator-benchmark.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/benchmark/taler-aggregator-benchmark.c b/src/benchmark/taler-aggregator-benchmark.c index 889c12cda..5fb9d1412 100644 --- a/src/benchmark/taler-aggregator-benchmark.c +++ b/src/benchmark/taler-aggregator-benchmark.c @@ -450,7 +450,8 @@ run (void *cls, global_ret = EXIT_NOTCONFIGURED; return; } - plugin = TALER_EXCHANGEDB_plugin_load (cfg); + plugin = TALER_EXCHANGEDB_plugin_load (cfg, + false); if (NULL == plugin) { global_ret = EXIT_NOTCONFIGURED; |