diff options
author | Sebastian <sebasjm@gmail.com> | 2021-09-02 10:58:32 -0300 |
---|---|---|
committer | Sebastian <sebasjm@gmail.com> | 2021-09-02 10:58:32 -0300 |
commit | 292e27ff7d1119ce40aefbaae39c327132392db1 (patch) | |
tree | 3e652250c4089248b252f692aace43882f368c94 | |
parent | eac1b39e5b5b5ada08d030c91e5abb9a80e0c127 (diff) |
wait a little longer
-rwxr-xr-x | src/testing/initialize_taler_system.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/testing/initialize_taler_system.sh b/src/testing/initialize_taler_system.sh index b66780a1..55cad2a9 100755 --- a/src/testing/initialize_taler_system.sh +++ b/src/testing/initialize_taler_system.sh @@ -140,10 +140,10 @@ echo " OK" echo -n "Waiting for the bank" # Wait for bank to be available (usually the slowest) -for n in `seq 1 50` +for n in `seq 1 10` do echo -n "." - sleep 0.2 + sleep 1 OK=0 # bank wget --waitretry=0 --timeout=1 http://localhost:8082/ -o /dev/null -O /dev/null >/dev/null || continue @@ -159,7 +159,7 @@ echo " OK" echo -n "Waiting for taler services " # Wait for all other taler services to be available -for n in `seq 1 10` +for n in `seq 1 20` do echo -n "." sleep 1 @@ -183,7 +183,7 @@ echo "OK" set +e echo -n 'Wait the exchange for gather its keys ' -for n in `seq 1 10` +for n in `seq 1 50` do echo -n "." sleep 1 |