Skip to content

Commit b1e8a85

Browse files
chore: rename to fault tolerance (#3834)
also fix links
1 parent d2ce217 commit b1e8a85

7 files changed

Lines changed: 16 additions & 8 deletions

File tree

‎src/docs.json‎

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1208,7 +1208,7 @@
12081208
"pages": [
12091209
"oss/python/langgraph/persistence",
12101210
"oss/python/langgraph/durable-execution",
1211-
"oss/python/langgraph/timeout-and-error-handling",
1211+
"oss/python/langgraph/fault-tolerance",
12121212
"oss/python/langgraph/streaming",
12131213
"oss/python/langgraph/interrupts",
12141214
"oss/python/langgraph/use-time-travel",
@@ -1991,6 +1991,14 @@
19911991
"source": "/oss/javascript/deepagents/long-term-memory",
19921992
"destination": "/oss/javascript/deepagents/memory"
19931993
},
1994+
{
1995+
"source": "/oss/python/langgraph/timeout-and-error-handling",
1996+
"destination": "/oss/python/langgraph/fault-tolerance"
1997+
},
1998+
{
1999+
"source": "/oss/javascript/langgraph/timeout-and-error-handling",
2000+
"destination": "/oss/javascript/langgraph/fault-tolerance"
2001+
},
19942002
{
19952003
"source": "/docs",
19962004
"destination": "/"

‎src/langsmith/sandbox-cli.mdx‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Authenticate the CLI with your LangSmith API key:
2626
export LANGSMITH_API_KEY="<LANGSMITH_API_KEY>"
2727
```
2828

29-
If you use a [self-hosted](/langsmith/self-hosted) or [hybrid](/langmsith/hybrid) LangSmith deployment, also set the endpoint:
29+
If you use a [self-hosted](/langsmith/self-hosted) or [hybrid](/langsmith/hybrid) LangSmith deployment, also set the endpoint:
3030

3131
```bash
3232
export LANGSMITH_ENDPOINT="https://your-langsmith-instance.com"

‎src/oss/deepagents/deploy.mdx‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ Add these to your `.env` alongside your other credentials. The bundler validates
236236
Frontend deployment requires `deepagents-cli>=0.0.43`.
237237
</Note>
238238

239-
Optionally enable `[frontend]` to ship a prebuilt React chat UI alongside your agent on the same deployment. The frontend is mounted at `/app` on your deployment URL; your LangGraph API stays at the root (`/threads`, `/runs`, `/assistants`). Every frontend uses one of three authentication providers — Clerk, Supabase, or anonymous (see [Authentication providers](#authentication-providers) below).
239+
Optionally enable `[frontend]` to ship a prebuilt React chat UI alongside your agent on the same deployment. The frontend is mounted at `/app` on your deployment URL; your LangGraph API stays at the root (`/threads`, `/runs`, `/assistants`). Every frontend uses one of three authentication providers — Clerk, Supabase, or anonymous (see [`[auth]`](#auth) below).
240240

241241
<ResponseField name="enabled" type="boolean" default="false">
242242
If `true`, bundle the default chat UI into the deployment.
File renamed without changes.

‎src/oss/langgraph/thinking-in-langgraph.mdx‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@ Different errors need different handling strategies:
304304

305305
:::python
306306

307-
Combine with `timeout=` to cap each attempt. See [Fault tolerance](/oss/langgraph/timeout-and-error-handling) for the full lifecycle.
307+
Combine with `timeout=` to cap each attempt. See [Fault tolerance](/oss/langgraph/fault-tolerance) for the full lifecycle.
308308

309309
```python
310310
from langgraph.types import RetryPolicy
@@ -478,7 +478,7 @@ Different errors need different handling strategies:
478478

479479
:::python
480480

481-
See [Fault tolerance](/oss/langgraph/timeout-and-error-handling#error-handling) for the full pattern.
481+
See [Fault tolerance](/oss/langgraph/fault-tolerance#error-handling) for the full pattern.
482482

483483
<Note>
484484
`error_handler` requires `langgraph>=1.2`, currently in alpha.

‎src/oss/langgraph/use-functional-api.mdx‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -731,7 +731,7 @@ await main.invoke({ any_input: "foobar" }, config);
731731
:::
732732

733733
:::python
734-
`@task` also supports `timeout=` for capping how long an attempt may run. See [Fault tolerance](/oss/langgraph/timeout-and-error-handling#functional-api) for `TimeoutPolicy` usage with `@task` and `@entrypoint`.
734+
`@task` also supports `timeout=` for capping how long an attempt may run. See [Fault tolerance](/oss/langgraph/fault-tolerance#functional-api) for `TimeoutPolicy` usage with `@task` and `@entrypoint`.
735735

736736
<Note>
737737
`@task` and `@entrypoint` timeout support requires `langgraph>=1.2`, currently in alpha.

‎src/oss/langgraph/use-graph-api.mdx‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1586,7 +1586,7 @@ builder.add_node(
15861586
)
15871587
```
15881588

1589-
See [Fault tolerance](/oss/langgraph/timeout-and-error-handling#timeouts) for the full timeout lifecycle, idle-timeout refresh sources, and `runtime.heartbeat()`.
1589+
See [Fault tolerance](/oss/langgraph/fault-tolerance#timeouts) for the full timeout lifecycle, idle-timeout refresh sources, and `runtime.heartbeat()`.
15901590

15911591
## Handle node errors
15921592

@@ -1614,7 +1614,7 @@ builder.add_node(
16141614
)
16151615
```
16161616

1617-
See [Fault tolerance](/oss/langgraph/timeout-and-error-handling#error-handling) for compensation patterns and `Command` routing.
1617+
See [Fault tolerance](/oss/langgraph/fault-tolerance#error-handling) for compensation patterns and `Command` routing.
16181618

16191619
:::
16201620

0 commit comments

Comments
 (0)