Skip to content

Commit

Permalink
good
Browse files Browse the repository at this point in the history
  • Loading branch information
GSmithApps committed Jan 21, 2025
1 parent ff58bb7 commit 6255f9f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/encyclopedia/retry-policies.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import { RelatedReadContainer, RelatedReadItem } from '@site/src/components/rela
A Retry Policy works in cooperation with the timeouts to provide fine controls to optimize the execution experience.

A Retry Policy is a collection of attributes that instructs the Temporal Server how to retry a failure of a [Workflow Execution](/workflows#workflow-execution) or an [Activity Task Execution](/tasks#activity-task-execution).
(Retry Policies do not apply to [Workflow Task Executions](/tasks#workflow-task-execution), which always retry indefinitely.)
(Retry Policies do not apply to [Workflow Task Executions](/tasks#workflow-task-execution), which retry until the Workflow Execution Timeout, which is unlimited by default.)

Try out the [Activity retry simulator](/develop/activity-retry-simulator) to visiualize how a Retry Policy works.

Expand Down
2 changes: 1 addition & 1 deletion docs/references/failures.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ A **Workflow Task Failure** is an unexpected situation failing to process a Work
This could be triggered by a non-Temporal exception being raised (panicking in Go) in your Workflow code.
Any exception that does not extend Temporal's `FailureError` exception is considered a Workflow Task Failure.
These types of failures will cause the Workflow Task to be retried until the
Workflow Execution Timeout, which is indefinite by default.
Workflow Execution Timeout, which is unlimited by default.

#### Workflow Execution Failures

Expand Down

0 comments on commit 6255f9f

Please sign in to comment.