airbyte-source-google-sheets 0.6.1__py3-none-any.whl → 0.6.2__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: airbyte-source-google-sheets
3
- Version: 0.6.1
3
+ Version: 0.6.2
4
4
  Summary: Source implementation for Google Sheets.
5
5
  Home-page: https://airbyte.com
6
6
  License: Elv2
@@ -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=GbBxrW40DPIEFEzI_3jvRUS_1vYMqKAcAYA43oXRLJ8,13049
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.1.dist-info/METADATA,sha256=afp5ulHTMoYvip7Pz55Ba0LDbfNXB8aNnQMQ7byHqXE,5537
12
- airbyte_source_google_sheets-0.6.1.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
13
- airbyte_source_google_sheets-0.6.1.dist-info/entry_points.txt,sha256=Dtsfjohe5IPUFyqojk49SIoP7CifCTlNLG_pgivzppo,69
14
- airbyte_source_google_sheets-0.6.1.dist-info/RECORD,,
11
+ airbyte_source_google_sheets-0.6.2.dist-info/METADATA,sha256=HPNqGCC2qYlQ35X5Eyu249SZnOIFKashhqYfWga2zm4,5537
12
+ airbyte_source_google_sheets-0.6.2.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
13
+ airbyte_source_google_sheets-0.6.2.dist-info/entry_points.txt,sha256=Dtsfjohe5IPUFyqojk49SIoP7CifCTlNLG_pgivzppo,69
14
+ airbyte_source_google_sheets-0.6.2.dist-info/RECORD,,
@@ -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
- logger.info(f"Stopped syncing process due to rate limits. {error_description}")
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: