From 345a3a3ce60db3f06cb02ec3b6b6d23f4fd27969 Mon Sep 17 00:00:00 2001 From: Andrew Yuan Date: Wed, 15 Oct 2025 16:46:23 -0700 Subject: [PATCH] temporal CLI --- packages/proto/protos/index.d.ts | 2 +- packages/worker/src/worker-options.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/proto/protos/index.d.ts b/packages/proto/protos/index.d.ts index d8a43f8f0..8405bc0e4 100644 --- a/packages/proto/protos/index.d.ts +++ b/packages/proto/protos/index.d.ts @@ -25,7 +25,7 @@ * * The source protos are in [sdk-core/protos/api_upstream/temporal/api/](https://github.com/temporalio/sdk-core/tree/ts-release/protos/api_upstream/temporal/api), for example [`RetryPolicy` in `temporal/api/common/v1/message.proto`](https://github.com/temporalio/sdk-core/blob/85454935e39f789aaaa81f8a05773f8e2cdbcde2/protos/api_upstream/temporal/api/common/v1/message.proto#L96). * - * The gRPC service methods are documented in the proto comments and in the corresponding [`tctl` docs](https://docs.temporal.io/tctl/). + * The gRPC service methods are documented in the proto comments and in the corresponding [`Temporal CLI` docs](https://docs.temporal.io/cli/). * @module */ diff --git a/packages/worker/src/worker-options.ts b/packages/worker/src/worker-options.ts index dc9dc6fb8..c3e56aa49 100644 --- a/packages/worker/src/worker-options.ts +++ b/packages/worker/src/worker-options.ts @@ -231,7 +231,7 @@ export interface WorkerOptions { * Activities.) The Worker will not poll for new Activities if by doing so it might receive and execute an Activity * which would cause it to exceed this limit. Must be a positive number. * - * If unset, no rate limiting will be applied to Worker's Activities. (`tctl task-queue describe` will display the + * If unset, no rate limiting will be applied to Worker's Activities. (`temporal task-queue describe` will display the * absence of a limit as 100,000.) */ maxActivitiesPerSecond?: number;