@@ -18,14 +18,10 @@ import "temporal/api/sdk/v1/worker_config.proto";
1818// - Conventions between server and worker.
1919// - Definitions for commands and payloads for server-worker communication via Nexus
2020//
21- // WORKER COMMANDS AND CONVENTIONS:
21+ // WORKER COMMANDS CONVENTIONS:
2222//
2323// Worker commands are used to manage worker configurations, operations, etc.
2424// Command names should match names defined in the server API.
25- // Currently supported commands:
26- // - FetchWorkerConfig
27- // - UpdateWorkerConfig.
28- //
2925// Command names are provided in StartOperationRequest.Operation field.
3026//
3127// PAYLOAD CONVENTIONS:
@@ -36,12 +32,12 @@ import "temporal/api/sdk/v1/worker_config.proto";
3632// - Empty payload if response is not needed/not expected
3733//
3834// COMMUNICATION PROTOCOL:
39- // - Transport: Nexus messages on dedicated channel
35+ // - Transport: Nexus tasks on task queue
4036// - Server identifier: "sys-worker-service"
4137// - Task queue: "temporal-sys/worker-tq/{namespace_name}/{process_key}"
4238// --)
4339
44- // Will be send to the worker as a payload of the FetchWorkerConfig command.
40+ // Will be sent to the worker as a payload of the FetchWorkerConfig command.
4541message FetchWorkerConfigRequest {
4642 // List of worker identifiers. For now only a single worker instance key is supported.
4743 repeated string worker_instance_key = 1 ;
@@ -57,7 +53,7 @@ message FetchWorkerConfigResponse {
5753 repeated WorkerConfigEntry worker_configs = 1 ;
5854}
5955
60- // Will be send to the worker as a payload of the UpdateWorkerConfig command.
56+ // Will be sent to the worker as a payload of the UpdateWorkerConfig command.
6157message UpdateWorkerConfigRequest {
6258 // List of worker identifiers.
6359 repeated string worker_instance_key = 1 ;
0 commit comments