-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #70 from airflow-laminar/tkp/suppyd
Move to supervisor-pydantic
- Loading branch information
Showing
61 changed files
with
76 additions
and
2,279 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
from supervisor_pydantic import * | ||
|
||
from .airflow import * | ||
from .client import * | ||
from .config import * | ||
|
||
__version__ = "1.1.1" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
from .commands import * | ||
from .common import SupervisorTaskStep | ||
from .local import * | ||
|
||
try: | ||
|
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,8 @@ | ||
from typing import Literal | ||
|
||
SupervisorTaskStep = Literal[ | ||
"configure-supervisor", | ||
"start-supervisor", | ||
"start-programs", | ||
"stop-programs", | ||
"check-programs", | ||
"restart-programs", | ||
"stop-supervisor", | ||
"unconfigure-supervisor", | ||
"force-kill", | ||
] | ||
from airflow.exceptions import AirflowSkipException | ||
|
||
|
||
def skip_(): | ||
from airflow.exceptions import AirflowSkipException | ||
|
||
raise AirflowSkipException | ||
|
||
|
||
__all__ = ( | ||
"SupervisorTaskStep", | ||
"skip_", | ||
) | ||
__all__ = ("skip_",) |
Oops, something went wrong.