File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -536,6 +536,7 @@ def _check_response(self,
536
536
endpoint : furl ,
537
537
response : urllib3 .HTTPResponse
538
538
) -> MutableJSON :
539
+ # 202 is observed while waiting for the Parquet export
539
540
if response .status in (200 , 202 ):
540
541
return json .loads (response .data )
541
542
# FIXME: Azul sometimes conflates 401 and 403
@@ -659,10 +660,10 @@ def export_parquet_urls(self,
659
660
) -> Optional [dict [str , list [mutable_furl ]]]:
660
661
"""
661
662
Obtain URLs of Parquet files for the data tables of the specified
662
- snapshot. This is an time-consuming operation that usually takes on the
663
- order of 1 minute to complete.
663
+ snapshot. This is a time-consuming operation that usually takes on the
664
+ order of one minute to complete.
664
665
665
- :param snapshot_id: The UUID of the snapshot.
666
+ :param snapshot_id: The UUID of the snapshot
666
667
667
668
:return: A mapping of table names to lists of Parquet file download
668
669
URLs, or `None` if if no Parquet downloads are available for
You can’t perform that action at this time.
0 commit comments