Skip to content

Commit

Permalink
fix: increase timeout when doing algod health check (#290)
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-makerx authored Jun 21, 2023
1 parent 7716c13 commit 2b39970
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/algokit/core/sandbox.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ def ps(self, service_name: str | None = None) -> list[dict[str, Any]]:
DEFAULT_ALGOD_TOKEN = "a" * 64
DEFAULT_ALGOD_PORT = 4001
DEFAULT_INDEXER_PORT = 8980
DEFAULT_WAIT_FOR_ALGOD = 30
DEFAULT_WAIT_FOR_ALGOD = 60
DEFAULT_HEALTH_TIMEOUT = 1
ALGOD_HEALTH_URL = f"{DEFAULT_ALGOD_SERVER}:{DEFAULT_ALGOD_PORT}/v2/status"

Expand Down

1 comment on commit 2b39970

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage

Coverage Report
FileStmtsMissCoverMissing
src/algokit
   __init__.py15753%6–13, 17–24, 32–34
   __main__.py220%1–3
src/algokit/cli
   completions.py105298%80, 95
   doctor.py48394%142–144
   generate.py30197%49
   goal.py30197%42
   init.py1851492%301, 304–306, 317, 361, 387, 427, 436–438, 441–446, 459
   localnet.py91397%157, 178–179
src/algokit/core
   bootstrap.py1682386%11, 117, 140, 205, 208, 214–228, 244–246, 250–252
   conf.py30487%13, 17, 25, 27
   doctor.py65789%67–69, 92–94, 134
   log_handlers.py68790%50–51, 63, 112–116, 125
   proc.py45198%98
   sandbox.py1501590%100–107, 118, 226, 242, 257–259, 275
   typed_client_generation.py80594%55–57, 70, 75
   version_prompt.py73889%27–28, 40, 59–62, 80, 109
TOTAL134410392% 

Tests Skipped Failures Errors Time
210 0 💤 0 ❌ 0 🔥 13.385s ⏱️

Please sign in to comment.