You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by GitBox <gi...@apache.org> on 2019/10/30 16:35:33 UTC

[GitHub] [airflow] kaxil commented on a change in pull request #6470: [AIRFLOW-5817] Improve BigQuery operators idempotency

kaxil commented on a change in pull request #6470: [AIRFLOW-5817] Improve BigQuery operators idempotency
URL: https://github.com/apache/airflow/pull/6470#discussion_r340728709
 
 

 ##########
 File path: airflow/gcp/hooks/bigquery.py
 ##########
 @@ -332,19 +332,13 @@ def create_empty_table(self,
         self.log.info('Creating Table %s:%s.%s',
                       project_id, dataset_id, table_id)
 
-        try:
-            self.service.tables().insert(
-                projectId=project_id,
-                datasetId=dataset_id,
-                body=table_resource).execute(num_retries=num_retries)
-
-            self.log.info('Table created successfully: %s:%s.%s',
-                          project_id, dataset_id, table_id)
+        self.service.tables().insert(
+            projectId=project_id,
+            datasetId=dataset_id,
+            body=table_resource).execute(num_retries=num_retries)
 
-        except HttpError as err:
-            raise AirflowException(
-                'BigQuery job failed. Error was: {}'.format(err.content)
-            )
+        self.log.info('Table created successfully: %s:%s.%s',
 
 Review comment:
   I don't get what changed! We just moved it from hook to operator !!
   
   

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services