airbyte-source-google-sheets 0.7.2__tar.gz → 0.7.4__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {airbyte_source_google_sheets-0.7.2 → airbyte_source_google_sheets-0.7.4}/PKG-INFO +1 -1
- {airbyte_source_google_sheets-0.7.2 → airbyte_source_google_sheets-0.7.4}/pyproject.toml +1 -1
- {airbyte_source_google_sheets-0.7.2 → airbyte_source_google_sheets-0.7.4}/source_google_sheets/source.py +5 -0
- {airbyte_source_google_sheets-0.7.2 → airbyte_source_google_sheets-0.7.4}/README.md +0 -0
- {airbyte_source_google_sheets-0.7.2 → airbyte_source_google_sheets-0.7.4}/source_google_sheets/__init__.py +0 -0
- {airbyte_source_google_sheets-0.7.2 → airbyte_source_google_sheets-0.7.4}/source_google_sheets/client.py +0 -0
- {airbyte_source_google_sheets-0.7.2 → airbyte_source_google_sheets-0.7.4}/source_google_sheets/helpers.py +0 -0
- {airbyte_source_google_sheets-0.7.2 → airbyte_source_google_sheets-0.7.4}/source_google_sheets/models/__init__.py +0 -0
- {airbyte_source_google_sheets-0.7.2 → airbyte_source_google_sheets-0.7.4}/source_google_sheets/models/spreadsheet.py +0 -0
- {airbyte_source_google_sheets-0.7.2 → airbyte_source_google_sheets-0.7.4}/source_google_sheets/models/spreadsheet_values.py +0 -0
- {airbyte_source_google_sheets-0.7.2 → airbyte_source_google_sheets-0.7.4}/source_google_sheets/run.py +0 -0
- {airbyte_source_google_sheets-0.7.2 → airbyte_source_google_sheets-0.7.4}/source_google_sheets/spec.yaml +0 -0
- {airbyte_source_google_sheets-0.7.2 → airbyte_source_google_sheets-0.7.4}/source_google_sheets/utils.py +0 -0
@@ -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
|
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|