Skip to content

Commit

Permalink
fixup! Add restarting state to TaskState Enum in REST API
Browse files Browse the repository at this point in the history
  • Loading branch information
ephraimbuddy committed Sep 29, 2022
1 parent e581400 commit 0c5829a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion airflow/www/static/js/types/api-generated.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1953,6 +1953,7 @@ export interface components {
* *Changed in version 2.2.0*: 'deferred' is added as a possible value.
*
* *Changed in version 2.4.0*: 'sensing' state has been removed.
* *Changed in version 2.4.2*: 'restarting' is added as a possible value
*
* @enum {string}
*/
Expand All @@ -1968,7 +1969,8 @@ export interface components {
| "none"
| "scheduled"
| "deferred"
| "removed";
| "removed"
| "restarting";
/**
* @description DAG State.
*
Expand Down

0 comments on commit 0c5829a

Please sign in to comment.