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 2022/03/14 15:07:13 UTC

[GitHub] [airflow] ashb commented on a change in pull request #22244: Protect against accidental misuse of XCom.get_value()

ashb commented on a change in pull request #22244:
URL: https://github.com/apache/airflow/pull/22244#discussion_r826053680



##########
File path: airflow/providers/amazon/aws/operators/emr.py
##########
@@ -244,7 +244,7 @@ def get_link(
         :param dttm: datetime
         :return: url link
         """
-        if ti_key:
+        if ti_key is not None:

Review comment:
       This makes no difference does it? (since we don't define a custom book on TIKey)




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