airbyte-source-google-sheets 0.7.2__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.
- {airbyte_source_google_sheets-0.7.2.dist-info → airbyte_source_google_sheets-0.7.4.dist-info}/METADATA +1 -1
- {airbyte_source_google_sheets-0.7.2.dist-info → airbyte_source_google_sheets-0.7.4.dist-info}/RECORD +5 -5
- source_google_sheets/source.py +5 -0
- {airbyte_source_google_sheets-0.7.2.dist-info → airbyte_source_google_sheets-0.7.4.dist-info}/WHEEL +0 -0
- {airbyte_source_google_sheets-0.7.2.dist-info → airbyte_source_google_sheets-0.7.4.dist-info}/entry_points.txt +0 -0
{airbyte_source_google_sheets-0.7.2.dist-info → airbyte_source_google_sheets-0.7.4.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=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.
|
12
|
-
airbyte_source_google_sheets-0.7.
|
13
|
-
airbyte_source_google_sheets-0.7.
|
14
|
-
airbyte_source_google_sheets-0.7.
|
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,,
|
source_google_sheets/source.py
CHANGED
@@ -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
|
|
{airbyte_source_google_sheets-0.7.2.dist-info → airbyte_source_google_sheets-0.7.4.dist-info}/WHEEL
RENAMED
File without changes
|
File without changes
|