make posthog default timeout 2 seconds (#4842)
Some checks failed
Build Skyvern SDK and publish to PyPI / run-ci (push) Blocked by required conditions
Build Skyvern SDK and publish to PyPI / build-sdk (push) Blocked by required conditions
Run tests and pre-commit / Run tests and pre-commit hooks (push) Failing after 14s
Auto Create GitHub Release on Version Change / check-version-change (push) Successful in 2m8s
Publish Fern Docs / run (push) Failing after 5s
Build Skyvern SDK and publish to PyPI / check-version-change (push) Successful in 1m50s
Auto Create GitHub Release on Version Change / create-release (push) Has been skipped
Run tests and pre-commit / Frontend Lint and Build (push) Successful in 4m53s

This commit is contained in:
Shuchang Zheng 2026-03-18 08:48:44 -07:00 committed by GitHub
parent b15f1767f3
commit ddfb558cbc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -15,7 +15,7 @@ LOG = structlog.get_logger(__name__)
def _build_posthog_client(api_key: str, host: str) -> Posthog:
return Posthog(api_key, host=host, disable_geoip=False)
return Posthog(api_key, host=host, disable_geoip=False, timeout=2)
posthog = _build_posthog_client(