Skip to content

Commit

Permalink
make task queue a string in activity update message
Browse files Browse the repository at this point in the history
  • Loading branch information
ychebotarev committed Aug 8, 2024
1 parent 4af1609 commit fe48cbf
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions temporal/api/activity/v1/message.proto
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,6 @@ message Timeouts {
google.protobuf.Duration start_to_close_timeout = 3;
// Maximum permitted time between successful worker heartbeats.
google.protobuf.Duration heartbeat_timeout = 4;

}

message ActivityOptions {
Expand All @@ -77,7 +76,11 @@ message ActivityOptions {
}

message ActivityUpdate {
temporal.api.activity.v1.ActivityOptions options = 1;
string task_queue = 1;

temporal.api.activity.v1.Timeouts timeouts = 2;

temporal.api.common.v1.RetryPolicy retry_policy = 3;

google.protobuf.FieldMask update_mask = 2;
google.protobuf.FieldMask update_mask = 4;
}

0 comments on commit fe48cbf

Please sign in to comment.