You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by "Marek Kowal (JIRA)" <ji...@apache.org> on 2018/09/05 15:16:00 UTC

[jira] [Updated] (AIRFLOW-3012) Email on sla miss is send only to first adress on the list

     [ https://issues.apache.org/jira/browse/AIRFLOW-3012?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Marek Kowal updated AIRFLOW-3012:
---------------------------------
    Description: 
Description:

I store email recipients as a variable, test_recipient: test1@test.com, [test2@test.com|mailto:test2@test.com]

With such dag definition:
{code:java}
email = Variable.get("test_recipients")
args = {
    'owner': 'airflow'
    , 'depends_on_past': False
    , 'start_date': datetime(2018, 8, 20, 0, 0)
    , 'retries': 0
    , 'email': email
    , 'email_on_failure': True
    , 'email_on_retry': True
    , 'sla': timedelta(seconds=10)
}{code}
On sla miss email is send only to the first person on the list, in my example [test1@test.com|mailto:test1@test.com]

to reproduce:

create email list variable as string and wait for sla miss

  was:
Description:

I store email recipients as a variable, test_recipient: test1@test.com, [test2@test.com|mailto:test2@test.com]

With such dag definition:
{code:java}
email = Variable.get("test_recipients")
args = {
    'owner': 'airflow'
    , 'depends_on_past': False
    , 'start_date': datetime(2018, 8, 20, 0, 0)
    , 'retries': 0
    , 'email': email
    , 'email_on_failure': True
    , 'email_on_retry': True
    , 'sla': timedelta(seconds=10)
}{code}
On sla miss email is send only to the first person on the list, in my example[test1@test.com|mailto:test1@test.com]

to reproduce:

create email list variable as string and wait for sla miss


> Email on sla miss is send only to first adress on the list
> ----------------------------------------------------------
>
>                 Key: AIRFLOW-3012
>                 URL: https://issues.apache.org/jira/browse/AIRFLOW-3012
>             Project: Apache Airflow
>          Issue Type: Bug
>    Affects Versions: 1.9.0
>            Reporter: Marek Kowal
>            Priority: Major
>
> Description:
> I store email recipients as a variable, test_recipient: test1@test.com, [test2@test.com|mailto:test2@test.com]
> With such dag definition:
> {code:java}
> email = Variable.get("test_recipients")
> args = {
>     'owner': 'airflow'
>     , 'depends_on_past': False
>     , 'start_date': datetime(2018, 8, 20, 0, 0)
>     , 'retries': 0
>     , 'email': email
>     , 'email_on_failure': True
>     , 'email_on_retry': True
>     , 'sla': timedelta(seconds=10)
> }{code}
> On sla miss email is send only to the first person on the list, in my example [test1@test.com|mailto:test1@test.com]
> to reproduce:
> create email list variable as string and wait for sla miss



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)