@@ -262,6 +262,11 @@ message PollWorkflowTaskQueueRequest {
262262 // A unique key for this worker instance, used for tracking worker lifecycle.
263263 // This is guaranteed to be unique, whereas identity is not guaranteed to be unique.
264264 string worker_instance_key = 8 ;
265+
266+ // The task queue on which the server will send control tasks to this worker.
267+ // Example: Cancel activity, update config, etc.
268+ string nexus_task_queue = 9 ;
269+
265270 // Deprecated. Use deployment_options instead.
266271 // Each worker process should provide an ID unique to the specific set of code it is running
267272 // "checksum" in this field name isn't very accurate, it should be though of as an id.
@@ -452,6 +457,11 @@ message PollActivityTaskQueueRequest {
452457 // A unique key for this worker instance, used for tracking worker lifecycle.
453458 // This is guaranteed to be unique, whereas identity is not guaranteed to be unique.
454459 string worker_instance_key = 8 ;
460+
461+ // The task queue on which the server will send control tasks to this worker.
462+ // Example: Cancel activity, update config, etc.
463+ string nexus_task_queue = 9 ;
464+
455465 temporal.api.taskqueue.v1.TaskQueueMetadata task_queue_metadata = 4 ;
456466 // Information about this worker's build identifier and if it is choosing to use the versioning
457467 // feature. See the `WorkerVersionCapabilities` docstring for more.
0 commit comments