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/03/07 19:20:51 UTC

[GitHub] [airflow] kaxil commented on a change in pull request #14638: Cache Hook when initializing `CloudFormationCreateStackSensor`

kaxil commented on a change in pull request #14638:
URL: https://github.com/apache/airflow/pull/14638#discussion_r589074917



##########
File path: airflow/providers/amazon/aws/sensors/cloud_formation.py
##########
@@ -18,6 +18,11 @@
 """This module contains sensors for AWS CloudFormation."""
 from typing import Optional
 
+try:
+    from functools import cached_property
+except ImportError:
+    from cached_property import cached_property

Review comment:
       Yup, like Elad mentioned  #14606 removed the dep for Python 3.8 users. this just build on top of that




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