kaxil commented on a change in pull request #7197:
URL: https://github.com/apache/airflow/pull/7197#discussion_r421137670
##########
File path: airflow/providers/google/cloud/sensors/gcs.py
##########
@@ -226,14 +228,15 @@ class GCSUploadSessionCompleteSensor(BaseSensorOperator):
template_fields = ('bucket', 'prefix')
ui_color = '#f0eee4'
+ previous_objects: Set[str]
@apply_defaults
def __init__(self,
bucket: str,
prefix: str,
inactivity_period: float = 60 * 60,
min_objects: int = 1,
- previous_num_objects: int = 0,
+ previous_objects: Optional[Set[str]] = None,
Review comment:
This is a change in the signature that should need a note in Updating.md
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]