airbyte-source-google-sheets 0.7.3__py3-none-any.whl → 0.7.4__py3-none-any.whl

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: airbyte-source-google-sheets
3
- Version: 0.7.3
3
+ Version: 0.7.4
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=kb7omE4G2VKTz0mqfcgcN1sGg_StkseT3wEsRieRBhQ,13238
8
+ source_google_sheets/source.py,sha256=KIcjUH_-vRNTwHd6rNv8c_jgPBJjXMMmcDvvVyng_OA,13504
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.7.3.dist-info/METADATA,sha256=adHDi3O9A6cQc0ghLeeZEaOyYXtLw7rCWtFrthHdxIA,5488
12
- airbyte_source_google_sheets-0.7.3.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
13
- airbyte_source_google_sheets-0.7.3.dist-info/entry_points.txt,sha256=Dtsfjohe5IPUFyqojk49SIoP7CifCTlNLG_pgivzppo,69
14
- airbyte_source_google_sheets-0.7.3.dist-info/RECORD,,
11
+ airbyte_source_google_sheets-0.7.4.dist-info/METADATA,sha256=iP92lz-_jqBeF1VuqX_RtiDUztNhrmijNvcFclCuP_o,5488
12
+ airbyte_source_google_sheets-0.7.4.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
13
+ airbyte_source_google_sheets-0.7.4.dist-info/entry_points.txt,sha256=Dtsfjohe5IPUFyqojk49SIoP7CifCTlNLG_pgivzppo,69
14
+ airbyte_source_google_sheets-0.7.4.dist-info/RECORD,,
@@ -259,6 +259,11 @@ class SourceGoogleSheets(Source):
259
259
  ) from e
260
260
  else:
261
261
  logger.info(f"{e.status_code}: {e.reason}. {error_description}")
262
+ raise AirbyteTracedException(
263
+ message=f"Stopped syncing process. {error_description}",
264
+ internal_message=error_description,
265
+ failure_type=FailureType.transient_error,
266
+ ) from e
262
267
  finally:
263
268
  logger.info(f"Finished syncing spreadsheet {spreadsheet_id}")
264
269