Lee-W commented on code in PR #36458:
URL: https://github.com/apache/airflow/pull/36458#discussion_r1437362967


##########
airflow/providers/atlassian/jira/hooks/jira.py:
##########
@@ -60,8 +60,7 @@ def get_conn(self) -> Jira:
                 # more can be added ex: timeout, cloud, session
 
                 # verify
-                if "verify" in extra_options and 
extra_options["verify"].lower() == "false":
-                    verify = False
+                verify = bool(extra_options.get("verify", verify))

Review Comment:
   I'm not sure. Don't we need to verify whether the value is "false" or not? 
The boolean value of "false" is True
   
   ```
   >>> bool("false")
   True
   ```



-- 
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-unsubscr...@airflow.apache.org

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

Reply via email to