From 23bedfa1ecc7c4286112722639c0c776093a9a3f Mon Sep 17 00:00:00 2001 From: Mikhail Yohman Date: Tue, 7 Oct 2025 07:40:33 -0600 Subject: [PATCH] Increase default timeouts for transform/checks from 10 to 60. (#563) --- infrahub_sdk/checks.py | 2 +- infrahub_sdk/transforms.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/infrahub_sdk/checks.py b/infrahub_sdk/checks.py index 79511ccb..5fdac509 100644 --- a/infrahub_sdk/checks.py +++ b/infrahub_sdk/checks.py @@ -33,7 +33,7 @@ class InfrahubCheckInitializer(BaseModel): class InfrahubCheck: name: str | None = None query: str = "" - timeout: int = 10 + timeout: int = 60 def __init__( self, diff --git a/infrahub_sdk/transforms.py b/infrahub_sdk/transforms.py index 29ed1136..f6b31bae 100644 --- a/infrahub_sdk/transforms.py +++ b/infrahub_sdk/transforms.py @@ -17,7 +17,7 @@ class InfrahubTransform(InfrahubOperation): name: str | None = None query: str - timeout: int = 10 + timeout: int = 60 def __init__( self,