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 2021/07/21 07:33:22 UTC

[GitHub] [airflow] ciancolo commented on issue #17037: Status of testing Providers that were prepared on July 15, 2021

ciancolo commented on issue #17037:
URL: https://github.com/apache/airflow/issues/17037#issuecomment-883961376


   there is a problem with #16365. In the case of `Extra` parameter in format `{'verify': true}` the conversion str to bool is not necessary. 
   
   With `Extra` parameters as string, the PR looks good.
   
   To fix it do I have to open a new PR?
   
   ```
   [2021-07-21, 07:15:33 UTC] {taskinstance.py:1455} ERROR - Task failed with exception
   Traceback (most recent call last):
     File "/opt/airflow/airflow/models/taskinstance.py", line 1182, in _run_raw_task
       self._prepare_and_execute_task_with_callbacks(context, task)
     File "/opt/airflow/airflow/models/taskinstance.py", line 1285, in _prepare_and_execute_task_with_callbacks
       result = self._execute_task(context, task_copy)
     File "/opt/airflow/airflow/models/taskinstance.py", line 1315, in _execute_task
       result = task_copy.execute(context=context)
     File "/opt/airflow/airflow/providers/tableau/operators/tableau_refresh_workbook.py", line 70, in execute
       with TableauHook(self.site_id, self.tableau_conn_id) as tableau_hook:
     File "/opt/airflow/airflow/providers/tableau/hooks/tableau.py", line 70, in __init__
       verify = bool(strtobool(verify))
     File "/usr/local/lib/python3.8/distutils/util.py", line 313, in strtobool
       val = val.lower()
   AttributeError: 'bool' object has no attribute 'lower'
   ```


-- 
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.

To unsubscribe, e-mail: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org