jason810496 commented on code in PR #51167: URL: https://github.com/apache/airflow/pull/51167#discussion_r2119069678
########## providers/sftp/src/airflow/providers/sftp/sensors/sftp.py: ########## @@ -89,25 +89,26 @@ def poke(self, context: Context) -> PokeReturnValue | bool: if self.file_pattern: files_from_pattern = self.hook.get_files_by_pattern(self.path, self.file_pattern) if files_from_pattern: - actual_files_to_check = [ + actual_files_present = [ os.path.join(self.path, file_from_pattern) for file_from_pattern in files_from_pattern ] Review Comment: I see, thanks for clarifying. -- 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-unsubscr...@airflow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org