alexbegg commented on a change in pull request #19530:
URL: https://github.com/apache/airflow/pull/19530#discussion_r747691336
##########
File path: airflow/providers/salesforce/hooks/salesforce.py
##########
@@ -27,6 +27,11 @@
import time
from typing import Any, Dict, Iterable, List, Optional
+try:
+ from functools import cached_property
+except ImportError:
+ from cached_property import cached_property
+
Review comment:
One of the PR's tests is failing `ModuleNotFoundError: No module named
'airflow.compat'`. Is it possible airflow.compat can't be used in provider
packages? The test that is failing is "Tests / Build and test provider packages
wheel (pull_request)"
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]