commit 719a3b154ab65327834e160e045d7e95e7b3b090 parent b2c110858d7f8b405af3e73b85f28c23037913a9 Author: Christian Grothoff <christian@grothoff.org> Date: Fri, 27 Aug 2021 20:17:54 +0200 -return with failure code Diffstat:
| M | src/backend/taler-merchant-httpd.c | | | 4 | +++- |
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/src/backend/taler-merchant-httpd.c b/src/backend/taler-merchant-httpd.c @@ -1601,7 +1601,9 @@ load_instances (void *cls, } if (0 > qs) { - GNUNET_break (0); + GNUNET_log (GNUNET_ERROR_TYPE_ERROR, + "Failed initialization. Check database setup.\n"); + result = EXIT_FAILURE; GNUNET_SCHEDULER_shutdown (); return; }