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

[jira] [Created] (AIRFLOW-2415) Airflow Operators are unable to support integers in templatized fields

Max Payton created AIRFLOW-2415:
-----------------------------------

             Summary: Airflow Operators are unable to support integers in templatized fields
                 Key: AIRFLOW-2415
                 URL: https://issues.apache.org/jira/browse/AIRFLOW-2415
             Project: Apache Airflow
          Issue Type: Bug
    Affects Versions: Airflow 2.0, Airflow 1.8
            Reporter: Max Payton


Currently, if you have an operator with a template fields argument that is a dictionary, e.g.:
`template_fields = ([dict_args])`

And you populate that dictionary with a field that an integer in a DAG, e.g.:
```
...
dict_args = \{'ds': '{{ ds }}', num_times: 5}
...
```

Then ariflow will give you the following error:
`\{base_task_runner.py:95} INFO - Subtask: airflow.exceptions.AirflowException: Type '<type 'int'>' used for parameter 'dict_args[num_times]' is not supported for templating`



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