Skip to content
Open
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 @@ -16739,6 +16739,10 @@
"workflowUpdateCallbacks": {
"type": "boolean",
"title": "True if the namespace supports attaching callbacks on workflow updates"
},
"pollerAutoscalingAutoEnroll": {
"type": "boolean",
"description": "When true, workers should use poller autoscaling by default unless explicitly configured otherwise."
}
},
"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 @@ -13141,6 +13141,9 @@ components:
workflowUpdateCallbacks:
type: boolean
description: True if the namespace supports attaching callbacks on workflow updates
pollerAutoscalingAutoEnroll:
type: boolean
description: When true, workers should use poller autoscaling by default unless explicitly configured otherwise.
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 @@ -56,6 +56,8 @@ message NamespaceInfo {
bool standalone_nexus_operation = 11;
// True if the namespace supports attaching callbacks on workflow updates
bool workflow_update_callbacks = 12;
// When true, workers should use poller autoscaling by default unless explicitly configured otherwise.
bool poller_autoscaling_auto_enroll = 13;
}

// Namespace configured limits
Expand Down
Loading