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
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ def get_params(cls, params: abc.MutableMapping | None) -> dict | None:
return {k: v.dump() for k, v in params.items()}

# Mypy issue https://github.com/python/mypy/issues/1362
@computed_field # type: ignore[prop-decorator]
@computed_field(deprecated=True) # type: ignore[prop-decorator]
@property
def concurrency(self) -> int:
"""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9684,6 +9684,7 @@ components:


Deprecated: Use max_active_tasks instead.'
deprecated: true
readOnly: true
latest_dag_version:
anyOf:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1953,6 +1953,7 @@ export const $DAGDetailsResponse = {
description: `Return max_active_tasks as concurrency.

Deprecated: Use max_active_tasks instead.`,
deprecated: true,
readOnly: true
},
latest_dag_version: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -543,6 +543,7 @@ export type DAGDetailsResponse = {
* Return max_active_tasks as concurrency.
*
* Deprecated: Use max_active_tasks instead.
* @deprecated
*/
readonly concurrency: number;
/**
Expand Down