-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New matching RPC: Check if version exists in TaskQueue #8772
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 2 commits
77b8aa8
b1cf752
9fed5c5
99fedcf
f6d5147
85ea320
15f5080
ff2ea79
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -641,3 +641,14 @@ message DescribeWorkerRequest { | |
| message DescribeWorkerResponse { | ||
| temporal.api.worker.v1.WorkerInfo worker_info = 1; | ||
| } | ||
|
|
||
| message CheckTaskQueueVersionMembershipRequest { | ||
| string namespace_id = 1; | ||
| temporal.api.taskqueue.v1.TaskQueue task_queue = 2; | ||
|
||
| temporal.api.enums.v1.TaskQueueType task_queue_type = 3; | ||
|
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Technically, we don't need this (right now) since all the version presence checks for a task queue go through the workflow task queue type. However, I just wanted to be consistent with other matching API's since those that accept task-queue also accept the type. Moreover, we could have a future use-case of involving the activity task queue type of a task queue. |
||
| temporal.server.api.deployment.v1.WorkerDeploymentVersion version = 4; | ||
| } | ||
|
|
||
| message CheckTaskQueueVersionMembershipResponse { | ||
| bool is_member = 1; | ||
| } | ||
Uh oh!
There was an error while loading. Please reload this page.