sunildataengineer commented on PR #68298:
URL: https://github.com/apache/airflow/pull/68298#issuecomment-4860648998
@bugraoz93 Thank you for the detailed review I've addressed all your
concerns:
Issue 1: asgiref Version Bump
Issue 2: SFTPOperation Should Be an Enum
- Changed: `asgiref>=3.5.2` → `asgiref>=3.11.1`
- Location: `providers/sftp/pyproject.toml` line 67
- Reason: You're right, we should use the latest stable version instead of
the 2022 release
Created `providers/sftp/src/airflow/providers/sftp/constants.py
python
from enum import Enum
class SFTPOperation(str, Enum):
"""Operation that can be used with SFTP."""
PUT = "put"
GET = "get"
DELETE = "delete"
--
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]