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/05/01 04:10:44 UTC

[GitHub] [airflow] uranusjr commented on a change in pull request #15615: Feature qubole hook support headers

uranusjr commented on a change in pull request #15615:
URL: https://github.com/apache/airflow/pull/15615#discussion_r624415075



##########
File path: airflow/providers/qubole/operators/qubole.py
##########
@@ -250,9 +250,9 @@ def on_kill(self, ti=None) -> None:
         else:
             self.get_hook().kill(ti)
 
-    def get_results(self, ti=None, fp=None, inline: bool = True, delim=None, fetch: bool = True) -> str:
+    def get_results(self, ti=None, fp=None, inline: bool = True, delim=None, fetch: bool = True, include_headers: bool = False) -> str:
         """get_results from Qubole"""
-        return self.get_hook().get_results(ti, fp, inline, delim, fetch)
+        return self.get_hook().get_results(ti, fp, inline, delim, fetch,include_headers)

Review comment:
       ```suggestion
           return self.get_hook().get_results(ti, fp, inline, delim, fetch, include_headers)
   ```
   
   Before pylint wastes a CI run to catch it…




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