Skip to content
This repository was archived by the owner on Oct 21, 2025. It is now read-only.

Commit cf1c898

Browse files
authored
chore: update delay in await ci funcs (#4807)
1 parent e352650 commit cf1c898

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

bats/ci_setup_suite.bash

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,29 +29,29 @@ await_api_is_up() {
2929
[[ "${network}" = "regtest" ]] || exit 1
3030
}
3131

32-
retry 360 1 server_is_up
32+
retry 360 5 server_is_up
3333
}
3434

3535
await_pay_is_up() {
3636
pay_is_up() {
3737
curl localhost:3002 || exit 1
3838
}
3939

40-
retry 360 1 pay_is_up
40+
retry 360 5 pay_is_up
4141
}
4242

4343
await_api_keys_is_up() {
4444
api_keys_is_up() {
4545
curl localhost:5397/auth/check || exit 1
4646
}
4747

48-
retry 360 1 api_keys_is_up
48+
retry 360 5 api_keys_is_up
4949
}
5050

5151
await_notifications_is_up() {
5252
notifications_is_up() {
5353
nc -zv localhost 6685 || exit 1
5454
}
5555

56-
retry 360 1 notifications_is_up
56+
retry 360 5 notifications_is_up
5757
}

0 commit comments

Comments
 (0)