Skip to content

Commit 3cf517f

Browse files
rkannan82claude
andcommitted
Add worker_commands namespace capability
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 84b0a5f commit 3cf517f

3 files changed

Lines changed: 9 additions & 0 deletions

File tree

openapi/openapiv2.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15472,6 +15472,10 @@
1547215472
"pollerAutoscaling": {
1547315473
"type": "boolean",
1547415474
"title": "True if the namespace supports poller autoscaling"
15475+
},
15476+
"workerCommands": {
15477+
"type": "boolean",
15478+
"description": "True if the namespace supports worker commands (server-to-worker communication via control queues)."
1547515479
}
1547615480
},
1547715481
"description": "Namespace capability details. Should contain what features are enabled in a namespace."

openapi/openapiv3.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12077,6 +12077,9 @@ components:
1207712077
pollerAutoscaling:
1207812078
type: boolean
1207912079
description: True if the namespace supports poller autoscaling
12080+
workerCommands:
12081+
type: boolean
12082+
description: True if the namespace supports worker commands (server-to-worker communication via control queues).
1208012083
description: Namespace capability details. Should contain what features are enabled in a namespace.
1208112084
NamespaceInfo_Limits:
1208212085
type: object

temporal/api/namespace/v1/message.proto

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,8 @@ message NamespaceInfo {
5050
bool worker_poll_complete_on_shutdown = 8;
5151
// True if the namespace supports poller autoscaling
5252
bool poller_autoscaling = 9;
53+
// True if the namespace supports worker commands (server-to-worker communication via control queues).
54+
bool worker_commands = 10;
5355
}
5456

5557
// Namespace configured limits

0 commit comments

Comments
 (0)