jedcunningham commented on code in PR #38423:
URL: https://github.com/apache/airflow/pull/38423#discussion_r1552066975


##########
airflow/providers/elasticsearch/log/es_task_handler.py:
##########
@@ -213,6 +218,21 @@ def format_url(host: str) -> str:
 
         return host
 
+    def _get_index_patterns(self, ti: TaskInstance | None) -> str | None:
+        """
+        Get index patterns by calling index_patterns_callable or None.
+
+        :param ti: A TaskInstance object or None.
+        """
+        if self.index_patterns_callable:
+            self.log.debug("Using %s index_patterns_callable", 
self.index_patterns_callable)
+            module_path, index_pattern_function = 
self.index_patterns_callable.rsplit(".", 1)
+            module = importlib.import_module(module_path)
+            index_pattern_callable_obj = getattr(module, 
index_pattern_function)
+            return index_pattern_callable_obj(ti)

Review Comment:
   I'm good either way. Happy to let it fail.



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