Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions buf.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ breaking:
- temporal/api/enums/v1/failed_cause.proto
# TODO: remove this once the changes with WorkflowExecutionExtendedInfo.pause_info is merged
- temporal/api/workflow/v1/message.proto
# TODO (amazzeo): remove this once worker_instance_key has successfully been retagged in PollWorkflowTaskQueueRequest and PollActivityTaskQueueRequest
- temporal/api/workflowservice/v1/request_response.proto
lint:
use:
- DEFAULT
Expand Down
12 changes: 10 additions & 2 deletions temporal/api/workflowservice/v1/request_response.proto
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ message PollWorkflowTaskQueueRequest {
string identity = 3;
// A unique key for this worker instance, used for tracking worker lifecycle.
// This is guaranteed to be unique, whereas identity is not guaranteed to be unique.
string worker_instance_key = 7;
string worker_instance_key = 8;
// Deprecated. Use deployment_options instead.
// Each worker process should provide an ID unique to the specific set of code it is running
// "checksum" in this field name isn't very accurate, it should be though of as an id.
Expand All @@ -273,6 +273,10 @@ message PollWorkflowTaskQueueRequest {
// Worker deployment options that user has set in the worker.
// Experimental. Worker Deployments are experimental and might significantly change in the future.
temporal.api.deployment.v1.WorkerDeploymentOptions deployment_options = 6;

// Removed in 1.55.0; was temporal.api.worker.v1.WorkerHeartbeat worker_heartbeat
reserved 7;
reserved "worker_heartbeat";
}

message PollWorkflowTaskQueueResponse {
Expand Down Expand Up @@ -439,14 +443,18 @@ message PollActivityTaskQueueRequest {
string identity = 3;
// A unique key for this worker instance, used for tracking worker lifecycle.
// This is guaranteed to be unique, whereas identity is not guaranteed to be unique.
string worker_instance_key = 7;
string worker_instance_key = 8;
temporal.api.taskqueue.v1.TaskQueueMetadata task_queue_metadata = 4;
// Information about this worker's build identifier and if it is choosing to use the versioning
// feature. See the `WorkerVersionCapabilities` docstring for more.
// Deprecated. Replaced by deployment_options.
temporal.api.common.v1.WorkerVersionCapabilities worker_version_capabilities = 5 [deprecated = true];
// Worker deployment options that user has set in the worker.
temporal.api.deployment.v1.WorkerDeploymentOptions deployment_options = 6;

// Removed in 1.55.0; was temporal.api.worker.v1.WorkerHeartbeat worker_heartbeat
reserved 7;
reserved "worker_heartbeat";
}

message PollActivityTaskQueueResponse {
Expand Down
Loading