Repository: incubator-airflow Updated Branches: refs/heads/master cbc02da48 -> bfbdeca65
[AIRFLOW-2029] Fix AttributeError in BigQueryPandasConnector Closes #2971 from fenglu-g/master Project: http://git-wip-us.apache.org/repos/asf/incubator-airflow/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-airflow/commit/bfbdeca6 Tree: http://git-wip-us.apache.org/repos/asf/incubator-airflow/tree/bfbdeca6 Diff: http://git-wip-us.apache.org/repos/asf/incubator-airflow/diff/bfbdeca6 Branch: refs/heads/master Commit: bfbdeca6536ddcccc3c53ce980b5999f10eed69b Parents: cbc02da Author: fenglu-g <[email protected]> Authored: Thu Jan 25 10:35:27 2018 -0800 Committer: Chris Riccomini <[email protected]> Committed: Thu Jan 25 10:35:27 2018 -0800 ---------------------------------------------------------------------- airflow/contrib/hooks/bigquery_hook.py | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-airflow/blob/bfbdeca6/airflow/contrib/hooks/bigquery_hook.py ---------------------------------------------------------------------- diff --git a/airflow/contrib/hooks/bigquery_hook.py b/airflow/contrib/hooks/bigquery_hook.py index 67c6329..4ab4ac0 100644 --- a/airflow/contrib/hooks/bigquery_hook.py +++ b/airflow/contrib/hooks/bigquery_hook.py @@ -156,6 +156,7 @@ class BigQueryPandasConnector(GbqConnector): reauth=False, verbose=False, dialect='legacy'): + super(BigQueryPandasConnector, self).__init__(project_id) gbq_check_google_client_version() gbq_test_google_api_imports() self.project_id = project_id
