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
4 changes: 4 additions & 0 deletions openapi/openapiv2.json
Original file line number Diff line number Diff line change
Expand Up @@ -15476,6 +15476,10 @@
"pollerAutoscaling": {
"type": "boolean",
"title": "True if the namespace supports poller autoscaling"
},
"workerCommands": {
"type": "boolean",
"description": "True if the namespace supports worker commands (server-to-worker communication via control queues)."
}
},
"description": "Namespace capability details. Should contain what features are enabled in a namespace."
Expand Down
3 changes: 3 additions & 0 deletions openapi/openapiv3.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12077,6 +12077,9 @@ components:
pollerAutoscaling:
type: boolean
description: True if the namespace supports poller autoscaling
workerCommands:
type: boolean
description: True if the namespace supports worker commands (server-to-worker communication via control queues).
description: Namespace capability details. Should contain what features are enabled in a namespace.
NamespaceInfo_Limits:
type: object
Expand Down
2 changes: 2 additions & 0 deletions temporal/api/namespace/v1/message.proto
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,8 @@ message NamespaceInfo {
bool worker_poll_complete_on_shutdown = 8;
// True if the namespace supports poller autoscaling
bool poller_autoscaling = 9;
// True if the namespace supports worker commands (server-to-worker communication via control queues).
bool worker_commands = 10;
}

// Namespace configured limits
Expand Down
Loading