We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1b555ce commit 1a5a2c4Copy full SHA for 1a5a2c4
great_expectations/datasource/fluent/data_connector/s3_data_connector.py
@@ -246,6 +246,7 @@ def list_s3_keys( # noqa: C901 # too complex
246
logger.debug(f"Fetching objects from S3 with query options: {query_options}")
247
248
s3_objects_info: dict = s3.list_objects_v2(**query_options)
249
+ query_options.pop("ContinuationToken", None)
250
251
if not any(key in s3_objects_info for key in ["Contents", "CommonPrefixes"]):
252
raise ValueError("S3 query may not have been configured correctly.") # noqa: TRY003 # FIXME CoP
0 commit comments