Skip to content

Commit 64c3140

Browse files
authored
Change default schedule catchup window to match API (#319)
1 parent df3b47a commit 64c3140

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Temporalio/Client/Schedules/SchedulePolicy.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public record SchedulePolicy
1919
/// Gets the amount of time in the past to execute misseed actions after a Temporal server
2020
/// is unavailable.
2121
/// </summary>
22-
public TimeSpan CatchupWindow { get; init; } = TimeSpan.FromMinutes(1);
22+
public TimeSpan CatchupWindow { get; init; } = TimeSpan.FromDays(365);
2323

2424
/// <summary>
2525
/// Gets a value indicating whether to pause the schedule if an action fails or times out.

0 commit comments

Comments
 (0)