ephraimbuddy commented on code in PR #52186: URL: https://github.com/apache/airflow/pull/52186#discussion_r2266288107
########## providers/git/src/airflow/providers/git/bundles/git.py: ########## @@ -208,6 +210,17 @@ def refresh(self) -> None: target = self.tracking_ref self.repo.head.reset(target, index=True, working_tree=True) + if self.supports_versioning: Review Comment: supports_versioning is True for GitDagBundle and is not something you can change except you subclassed GitDagBundle. There's no need to check supports_versioning here. Looks like there's a confusion here on what supports_versioning means. Can you share the error you encountered that resulted in this PR? -- 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