From 3cf1b85a690d95dad297338f1a47c4f03eb9f59d Mon Sep 17 00:00:00 2001 From: Dan Davison Date: Wed, 25 Sep 2024 09:19:54 -0400 Subject: [PATCH] Change client-side default to match server-side default (#649) --- temporalio/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/temporalio/client.py b/temporalio/client.py index 3c8e521b..7e5992f7 100644 --- a/temporalio/client.py +++ b/temporalio/client.py @@ -3575,7 +3575,7 @@ class SchedulePolicy: """Controls what happens when an action is started while another is still running.""" - catchup_window: timedelta = timedelta(minutes=1) + catchup_window: timedelta = timedelta(days=365) """After a Temporal server is unavailable, amount of time in the past to execute missed actions."""