[ 
https://issues.apache.org/jira/browse/AIRFLOW-5488?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16930134#comment-16930134
 ] 

ASF GitHub Bot commented on AIRFLOW-5488:
-----------------------------------------

jghoman commented on pull request #6114: [AIRFLOW-5488]Remove unused variables 
from tmp_configuration_copy method
URL: https://github.com/apache/airflow/pull/6114
 
 
   
 
----------------------------------------------------------------
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:
us...@infra.apache.org


> Remove unused variables from tmp_configuration_copy method
> ----------------------------------------------------------
>
>                 Key: AIRFLOW-5488
>                 URL: https://issues.apache.org/jira/browse/AIRFLOW-5488
>             Project: Apache Airflow
>          Issue Type: Bug
>          Components: utils
>    Affects Versions: 1.10.6
>            Reporter: Jakob Homan
>            Priority: Minor
>              Labels: ccoss2019, newbie
>
> Note: This ticket's being created to facilitate a new contributor's workshop 
> for Airflow. After the workshop has completed, I'll mark these all available 
> for anyone that might like to take them on.
> This method for making a temporary file with configuration has two 
> parameters, `include_env` and `include_cmds` that are never used and should 
> be removed.
> airflow/utils/configuration.py:27
> {code:java}
> def tmp_configuration_copy(chmod=0o600, include_env=True, include_cmds=True):
>     """
>     Returns a path for a temporary file including a full copy of the 
> configuration
>     settings.
>     :return: a path to a temporary file
>     """
>     cfg_dict = conf.as_dict(display_sensitive=True, raw=True)
>     temp_fd, cfg_path = mkstemp()
>     with os.fdopen(temp_fd, 'w') as temp_file:
>         # Set the permissions before we write anything to it.
>         if chmod is not None:
>             os.fchmod(temp_fd, chmod)
>         json.dump(cfg_dict, temp_file)
>     return cfg_path {code}



--
This message was sent by Atlassian Jira
(v8.3.2#803003)

Reply via email to