Skip to content

Commit 7f7c9bc

Browse files
Fix links
1 parent e453fb3 commit 7f7c9bc

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

docs/develop/go/temporal-nexus.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -338,12 +338,12 @@ func HelloCallerWorkflow(ctx workflow.Context, name string, language service.Lan
338338

339339
### Set Nexus Operation timeouts
340340

341-
Nexus Operations support [three types of timeouts](/encyclopedia/nexus-operations#timeouts) that control how long the caller is willing to wait at different stages of the Operation lifecycle.
341+
Nexus Operations support [three types of timeouts](/nexus/operations#timeouts) that control how long the caller is willing to wait at different stages of the Operation lifecycle.
342342
Set these timeouts in `NexusOperationOptions` when calling `ExecuteOperation`.
343343

344344
#### Schedule-to-Close timeout
345345

346-
The [Schedule-to-Close timeout](/encyclopedia/nexus-operations#schedule-to-close-timeout) limits the total duration of the Operation from when it is scheduled to when it completes.
346+
The [Schedule-to-Close timeout](/nexus/operations#schedule-to-close-timeout) limits the total duration of the Operation from when it is scheduled to when it completes.
347347
The Nexus Machinery automatically retries failed requests until this timeout is exceeded.
348348

349349
```go
@@ -354,7 +354,7 @@ fut := c.ExecuteOperation(ctx, service.HelloOperationName, service.HelloInput{Na
354354

355355
#### Schedule-to-Start timeout
356356

357-
The [Schedule-to-Start timeout](/encyclopedia/nexus-operations#schedule-to-start-timeout) limits how long the caller will wait for the Operation to be started by the handler.
357+
The [Schedule-to-Start timeout](/nexus/operations#schedule-to-start-timeout) limits how long the caller will wait for the Operation to be started by the handler.
358358
If not set, no Schedule-to-Start timeout is enforced.
359359

360360
```go
@@ -365,7 +365,7 @@ fut := c.ExecuteOperation(ctx, service.HelloOperationName, service.HelloInput{Na
365365

366366
#### Start-to-Close timeout
367367

368-
The [Start-to-Close timeout](/encyclopedia/nexus-operations#start-to-close-timeout) limits how long the caller will wait for an asynchronous Operation to complete after it has been started.
368+
The [Start-to-Close timeout](/nexus/operations#start-to-close-timeout) limits how long the caller will wait for an asynchronous Operation to complete after it has been started.
369369
This timeout only applies to asynchronous Operations.
370370
If not set, no Start-to-Close timeout is enforced.
371371

0 commit comments

Comments
 (0)