Skip to content

Commit

Permalink
Update max task timeout (#2407)
Browse files Browse the repository at this point in the history
  • Loading branch information
Quinn-With-Two-Ns authored Feb 8, 2025
1 parent 32df8d4 commit 76630fe
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ class StateMachines {
public static final long DEFAULT_WORKFLOW_EXECUTION_TIMEOUT_MILLISECONDS =
10L * 365 * 24 * 3600 * 1000;
public static final long DEFAULT_WORKFLOW_TASK_TIMEOUT_MILLISECONDS = 10L * 1000;
public static final long MAX_WORKFLOW_TASK_TIMEOUT_MILLISECONDS = 60L * 1000;
public static final long MAX_WORKFLOW_TASK_TIMEOUT_MILLISECONDS = 2 * 60L * 1000;
static final Duration DEFAULT_ACTIVITY_RETRY_INITIAL_INTERVAL = Durations.fromSeconds(1);
static final double DEFAULT_ACTIVITY_RETRY_BACKOFF_COEFFICIENT = 2.0;
static final int DEFAULT_ACTIVITY_RETRY_MAXIMUM_ATTEMPTS = 0;
Expand Down

0 comments on commit 76630fe

Please sign in to comment.