phanikumv commented on code in PR #29014:
URL: https://github.com/apache/airflow/pull/29014#discussion_r1080939010


##########
airflow/providers/dbt/cloud/hooks/dbt.py:
##########
@@ -125,6 +128,34 @@ class DbtCloudJobRunException(AirflowException):
     """An exception that indicates a job run failed to complete."""
 
 
+T = TypeVar("T", bound=Any)
+
+
+def provide_account_id(func: T) -> T:
+    """
+    Decorator which provides a fallback value for ``account_id``. If the 
``account_id`` is None or not passed
+    to the decorated function, the value will be taken from the configured dbt 
Cloud Airflow Connection.
+    """
+    function_signature = signature(func)

Review Comment:
   will check if it can be made cacheable



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

Reply via email to