Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
김진영
airflow-test
Commits
1ce3e7dd
Commit
1ce3e7dd
authored
May 20, 2022
by
김진영
Browse files
Update batch_test.py
parent
ac528f83
Changes
1
Hide whitespace changes
Inline
Side-by-side
batch_test.py
View file @
1ce3e7dd
...
...
@@ -19,18 +19,14 @@ def fail_alert(context):
"sections": [
{
"facts":[
{"name":"■ Execution Time", "value": "
{exec_date}
"},
{"name":"■ Task", "value": "
{task}
"},
{"name":"■ DAG", "value": "
{dag}
"},
{"name":"■ Execution Time", "value": "
%s
"},
{"name":"■ Task", "value": "
%s
"},
{"name":"■ DAG", "value": "
%s
"},
]
}
]
}
"""
.
format
(
exec_date
=
context
.
get
(
'execution_date'
),
task
=
context
.
get
(
'task_instance'
).
task_id
,
dag
=
context
.
get
(
'task_instance'
).
dag_id
,
)
"""
%
(
context
.
get
(
'execution_date'
),
context
.
get
(
'task_instance'
).
task_id
,
context
.
get
(
'task_instance'
).
dag_id
)
alert
=
BashOperator
(
task_id
=
'fail_alert'
,
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment