You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by cr...@apache.org on 2016/06/30 20:16:10 UTC

incubator-airflow git commit: [AIRFLOW-296] template_ext is being treated as a string rather than a tuple in qubole operator

Repository: incubator-airflow
Updated Branches:
  refs/heads/master 002cf85bd -> 24d41b890


[AIRFLOW-296] template_ext is being treated as a string rather than a tuple in qubole operator

Closes #1638 from msumit/AIRFLOW-296


Project: http://git-wip-us.apache.org/repos/asf/incubator-airflow/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-airflow/commit/24d41b89
Tree: http://git-wip-us.apache.org/repos/asf/incubator-airflow/tree/24d41b89
Diff: http://git-wip-us.apache.org/repos/asf/incubator-airflow/diff/24d41b89

Branch: refs/heads/master
Commit: 24d41b8909840451c1ef7d70c1c7671e6d87528c
Parents: 002cf85
Author: Sumit Maheshwari <su...@qubole.com>
Authored: Thu Jun 30 13:16:02 2016 -0700
Committer: Chris Riccomini <ch...@wepay.com>
Committed: Thu Jun 30 13:16:02 2016 -0700

----------------------------------------------------------------------
 airflow/contrib/operators/qubole_operator.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-airflow/blob/24d41b89/airflow/contrib/operators/qubole_operator.py
----------------------------------------------------------------------
diff --git a/airflow/contrib/operators/qubole_operator.py b/airflow/contrib/operators/qubole_operator.py
index cbf15c4..c462dca 100755
--- a/airflow/contrib/operators/qubole_operator.py
+++ b/airflow/contrib/operators/qubole_operator.py
@@ -95,7 +95,7 @@ class QuboleOperator(BaseOperator):
 
     template_fields = ('query', 'script_location', 'sub_command', 'script', 'files', 'archives', 'program', 'cmdline',
                        'sql', 'where_clause', 'extract_query', 'boundary_query', 'macros', 'tags', 'name', 'parameters')
-    template_ext = ('.txt')
+    template_ext = ('.txt',)
     ui_color = '#3064A1'
     ui_fgcolor = '#fff'