airbyte-source-google-sheets 0.6.0__tar.gz → 0.6.2__tar.gz

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.0
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,7 +5,7 @@ requires = [
5
5
  build-backend = "poetry.core.masonry.api"
6
6
 
7
7
  [tool.poetry]
8
- version = "0.6.0"
8
+ version = "0.6.2"
9
9
  name = "airbyte-source-google-sheets"
10
10
  description = "Source implementation for Google Sheets."
11
11
  authors = [
@@ -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: