Skip to content
Merged
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
8 changes: 5 additions & 3 deletions temporal/api/workflowservice/v1/request_response.proto
Original file line number Diff line number Diff line change
Expand Up @@ -452,11 +452,13 @@ message PollActivityTaskQueueRequest {
message PollActivityTaskQueueResponse {
// A unique identifier for this task
bytes task_token = 1;
// The namespace the workflow which requested this activity lives in
// The namespace of the activity. If this is a workflow activity then this is the namespace of
// the workflow also. If this is a standalone activity then the name of this field is
// misleading, but retained for compatibility with workflow activities.
string workflow_namespace = 2;
// Type of the requesting workflow
// Type of the requesting workflow (if this is a workflow activity).
temporal.api.common.v1.WorkflowType workflow_type = 3;
// Execution info of the requesting workflow
// Execution info of the requesting workflow (if this is a workflow activity)
temporal.api.common.v1.WorkflowExecution workflow_execution = 4;
temporal.api.common.v1.ActivityType activity_type = 5;
// The autogenerated or user specified identifier of this activity. Can be used to complete the
Expand Down
Loading