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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: airbyte-source-google-sheets
3
- Version: 0.7.2
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,7 +5,7 @@ requires = [
5
5
  build-backend = "poetry.core.masonry.api"
6
6
 
7
7
  [tool.poetry]
8
- version = "0.7.2"
8
+ version = "0.7.4"
9
9
  name = "airbyte-source-google-sheets"
10
10
  description = "Source implementation for Google Sheets."
11
11
  authors = [
@@ -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