From 44eeecefeb05520abf4efc3a7c3de0383b8290c0 Mon Sep 17 00:00:00 2001 From: Mikhail Yohman Date: Thu, 2 Oct 2025 11:27:52 -0600 Subject: [PATCH] Increase default timeouts for transform/checks from 10 to 60. --- 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,