Skip to content

Instantly share code, notes, and snippets.

@aawgit
Last active November 16, 2019 17:44
Show Gist options
  • Save aawgit/0753b3ef1d715257e442ceafbc8583d3 to your computer and use it in GitHub Desktop.
Save aawgit/0753b3ef1d715257e442ceafbc8583d3 to your computer and use it in GitHub Desktop.
from airflow import DAG
from airflow.operators.python_operator import PythonOperator
def error_function():
raise Exception('Something wrong')
t2 = PythonOperator(
task_id='failing_task',
python_callable=error_function,
email_on_failure=True,
emai='receivers@mail.com
dag=dag,
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment