merchant

Merchant backend to process payments, run by merchants
Log | Files | Refs | Submodules | README | LICENSE

commit 343a1b107125592445762e41f1262101f5bfc626
parent 2ee30beb476429829be0ddcc7c08244874295399
Author: Christian Grothoff <christian@grothoff.org>
Date:   Fri,  4 Nov 2022 17:19:21 +0100

-fix sandbox test

Diffstat:
Msrc/testing/initialize_taler_system.sh | 10++++++++--
1 file changed, 8 insertions(+), 2 deletions(-)

diff --git a/src/testing/initialize_taler_system.sh b/src/testing/initialize_taler_system.sh @@ -184,7 +184,11 @@ do sleep 0.1 OK=0 # bank - wget --waitretry=0 --timeout=1 http://localhost:8082/ -o /dev/null -O /dev/null >/dev/null || continue + wget --waitretry=0 --timeout=1 \ + --user admin --password secret \ + http://localhost:8082/ \ + -o /dev/null \ + -O /dev/null >/dev/null || continue OK=1 break done @@ -259,7 +263,9 @@ for n in `seq 1 3` do echo -n "." OK=0 - wget --tries=1 --timeout=1 http://localhost:8081/keys -o /dev/null -O /dev/null >/dev/null || continue + wget --tries=1 --timeout=1 \ + http://localhost:8081/keys \ + -o /dev/null -O /dev/null >/dev/null || continue OK=1 break done