Skip to content

Commit

Permalink
test: try increasing timeout
Browse files Browse the repository at this point in the history
Signed-off-by: Alex Walker <[email protected]>
  • Loading branch information
anwalker293 committed Feb 21, 2024
1 parent 9c47211 commit 43c9b50
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion controller/controller.py
Original file line number Diff line number Diff line change
Expand Up @@ -550,7 +550,7 @@ async def record_with_values(
topic: str,
*,
record_type: Optional[Type[T]] = None,
timeout: int = 5,
timeout: int = 15,
**values,
) -> Union[T, Mapping[str, Any]]:
"""Get a record from an event with values matching those passed in."""
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ services:
test: curl -s -o /dev/null -w '%{http_code}' "http://localhost:3001/status/live" | grep "200" > /dev/null
start_period: 30s
interval: 7s
timeout: 5s
timeout: 15s
retries: 5
depends_on:
webhook-listener:
Expand Down Expand Up @@ -75,7 +75,7 @@ services:
test: curl -s -o /dev/null -w '%{http_code}' "http://localhost:3001/status/live" | grep "200" > /dev/null
start_period: 30s
interval: 7s
timeout: 5s
timeout: 15s
retries: 5
depends_on:
webhook-listener:
Expand Down
4 changes: 2 additions & 2 deletions examples/json_ld/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ services:
test: curl -s -o /dev/null -w '%{http_code}' "http://localhost:3001/status/live" | grep "200" > /dev/null
start_period: 30s
interval: 3s
timeout: 5s
timeout: 15s
retries: 5


Expand All @@ -46,7 +46,7 @@ services:
test: curl -s -o /dev/null -w '%{http_code}' "http://localhost:3001/status/live" | grep "200" > /dev/null
start_period: 30s
interval: 3s
timeout: 5s
timeout: 15s
retries: 5

example:
Expand Down
4 changes: 2 additions & 2 deletions examples/presenting_revoked_credential/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ services:
test: curl -s -o /dev/null -w '%{http_code}' "http://localhost:3001/status/live" | grep "200" > /dev/null
start_period: 30s
interval: 7s
timeout: 5s
timeout: 15s
retries: 5
depends_on:
webhook-listener:
Expand Down Expand Up @@ -74,7 +74,7 @@ services:
test: curl -s -o /dev/null -w '%{http_code}' "http://localhost:3001/status/live" | grep "200" > /dev/null
start_period: 30s
interval: 7s
timeout: 5s
timeout: 15s
retries: 5
depends_on:
webhook-listener:
Expand Down
4 changes: 2 additions & 2 deletions examples/simple/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ services:
test: curl -s -o /dev/null -w '%{http_code}' "http://localhost:3001/status/live" | grep "200" > /dev/null
start_period: 30s
interval: 7s
timeout: 5s
timeout: 15s
retries: 5
depends_on:
webhook-listener:
Expand Down Expand Up @@ -64,7 +64,7 @@ services:
test: curl -s -o /dev/null -w '%{http_code}' "http://localhost:3001/status/live" | grep "200" > /dev/null
start_period: 30s
interval: 7s
timeout: 5s
timeout: 15s
retries: 5
depends_on:
webhook-listener:
Expand Down
4 changes: 2 additions & 2 deletions examples/tunnels/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ services:
test: curl -s -o /dev/null -w '%{http_code}' "http://localhost:3001/status/live" | grep "200" > /dev/null
start_period: 30s
interval: 7s
timeout: 5s
timeout: 15s
retries: 5
depends_on:
webhook-listener:
Expand Down Expand Up @@ -90,7 +90,7 @@ services:
test: curl -s -o /dev/null -w '%{http_code}' "http://localhost:3001/status/live" | grep "200" > /dev/null
start_period: 30s
interval: 7s
timeout: 5s
timeout: 15s
retries: 5
depends_on:
webhook-listener:
Expand Down

0 comments on commit 43c9b50

Please sign in to comment.