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 @@ -12615,6 +12615,10 @@
"reportedProblemsSearchAttribute": {
"type": "boolean",
"title": "True if the namespace supports reported problems search attribute"
},
"workflowPause": {
"type": "boolean",
"title": "True if the namespace supports pausing workflows"
}
},
"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 @@ -9344,6 +9344,9 @@ components:
reportedProblemsSearchAttribute:
type: boolean
description: True if the namespace supports reported problems search attribute
workflowPause:
type: boolean
description: True if the namespace supports pausing workflows
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 @@ -38,6 +38,8 @@ message NamespaceInfo {
bool worker_heartbeats = 4;
// True if the namespace supports reported problems search attribute
bool reported_problems_search_attribute = 5;
// True if the namespace supports pausing workflows
bool workflow_pause = 6;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

How will this be tied to frontend.WorkflowPauseEnabled dynamic config?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'll make a similar change to this code section in server code

}

// Namespace configured limits
Expand Down
Loading