airbyte-source-google-sheets 0.6.1__py3-none-any.whl → 0.6.3__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {airbyte_source_google_sheets-0.6.1.dist-info → airbyte_source_google_sheets-0.6.3.dist-info}/METADATA +1 -1
- {airbyte_source_google_sheets-0.6.1.dist-info → airbyte_source_google_sheets-0.6.3.dist-info}/RECORD +5 -5
- source_google_sheets/source.py +5 -1
- {airbyte_source_google_sheets-0.6.1.dist-info → airbyte_source_google_sheets-0.6.3.dist-info}/WHEEL +0 -0
- {airbyte_source_google_sheets-0.6.1.dist-info → airbyte_source_google_sheets-0.6.3.dist-info}/entry_points.txt +0 -0
{airbyte_source_google_sheets-0.6.1.dist-info → airbyte_source_google_sheets-0.6.3.dist-info}/RECORD
RENAMED
@@ -5,10 +5,10 @@ source_google_sheets/models/__init__.py,sha256=Z-4MTpxG5t2jGhXzs4PPoIOa83zw3jRnU
|
|
5
5
|
source_google_sheets/models/spreadsheet.py,sha256=fsHREpPEN36wCzGdqgfJ2EVW40UDZ_lS863A4XT2pGo,1112
|
6
6
|
source_google_sheets/models/spreadsheet_values.py,sha256=y8ytuTqwpziJ2ICl0xhlRWgjMkxTfxOalRd414PMHZM,440
|
7
7
|
source_google_sheets/run.py,sha256=_f5-LNqMzBuHtCD1YoUBxnA0fszgqmdNGcN7y_AmXU0,237
|
8
|
-
source_google_sheets/source.py,sha256=
|
8
|
+
source_google_sheets/source.py,sha256=kb7omE4G2VKTz0mqfcgcN1sGg_StkseT3wEsRieRBhQ,13238
|
9
9
|
source_google_sheets/spec.yaml,sha256=WrPdH2xLCdyM-kY-pRqbwICcNPhv8nqnb2gdbslTsaQ,5141
|
10
10
|
source_google_sheets/utils.py,sha256=ZB5lboyffiuuQdSarqe8AqBGEyiQpxiOfxqcU7Ght8A,2289
|
11
|
-
airbyte_source_google_sheets-0.6.
|
12
|
-
airbyte_source_google_sheets-0.6.
|
13
|
-
airbyte_source_google_sheets-0.6.
|
14
|
-
airbyte_source_google_sheets-0.6.
|
11
|
+
airbyte_source_google_sheets-0.6.3.dist-info/METADATA,sha256=k59HPNAzPI3Mrv8kpethnAhH9Vgq3b2eIWCQ8tVxCns,5537
|
12
|
+
airbyte_source_google_sheets-0.6.3.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
13
|
+
airbyte_source_google_sheets-0.6.3.dist-info/entry_points.txt,sha256=Dtsfjohe5IPUFyqojk49SIoP7CifCTlNLG_pgivzppo,69
|
14
|
+
airbyte_source_google_sheets-0.6.3.dist-info/RECORD,,
|
source_google_sheets/source.py
CHANGED
@@ -252,7 +252,11 @@ class SourceGoogleSheets(Source):
|
|
252
252
|
failure_type=FailureType.config_error,
|
253
253
|
) from e
|
254
254
|
if e.status_code == status_codes.TOO_MANY_REQUESTS:
|
255
|
-
|
255
|
+
raise AirbyteTracedException(
|
256
|
+
message=f"Stopped syncing process due to rate limits. {error_description}",
|
257
|
+
internal_message=error_description,
|
258
|
+
failure_type=FailureType.transient_error,
|
259
|
+
) from e
|
256
260
|
else:
|
257
261
|
logger.info(f"{e.status_code}: {e.reason}. {error_description}")
|
258
262
|
finally:
|
{airbyte_source_google_sheets-0.6.1.dist-info → airbyte_source_google_sheets-0.6.3.dist-info}/WHEEL
RENAMED
File without changes
|
File without changes
|