challenger

OAuth 2.0-based authentication service that validates user can receive messages at a certain address
Log | Files | Refs | Submodules | README | LICENSE

commit c0bac8f273ecfc60df79cac8edb2241308496fe0
parent d08f003de678fbceafe398cdea05cac23a74b999
Author: Florian Dold <florian@dold.me>
Date:   Wed, 24 Jun 2026 21:26:02 +0200

db: fix connection in test

Diffstat:
Msrc/challengerdb/test_challenger_db.c | 6+++++-
1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/src/challengerdb/test_challenger_db.c b/src/challengerdb/test_challenger_db.c @@ -62,11 +62,15 @@ run (void *cls) { struct GNUNET_CONFIGURATION_Handle *cfg = cls; - if (NULL == (pg = CHALLENGERDB_connect (cfg))) + GNUNET_log (GNUNET_ERROR_TYPE_INFO, + "Connecting\n"); + if (NULL == (pg = CHALLENGERDB_connect_admin (cfg))) { result = 77; return; } + GNUNET_log (GNUNET_ERROR_TYPE_INFO, + "Connected\n"); if (GNUNET_OK != CHALLENGERDB_drop_tables (pg)) {