File tree Expand file tree Collapse file tree 4 files changed +15
-5
lines changed
Expand file tree Collapse file tree 4 files changed +15
-5
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ management:
44 docChecksum: 8f62e207fcdebe72da7eb9c7525220b5
55 docVersion: 1.0.0
66 speakeasyVersion: internal
7- generationVersion: 2.228.1
7+ generationVersion: 2.233.2
88 releaseVersion: 0.44.2
99 configChecksum: bf17012ac6ba48ff08ca884c83be54d2
1010 repoURL: https://github.com/airbytehq/airbyte-api-python-sdk.git
Original file line number Diff line number Diff line change @@ -788,4 +788,14 @@ Based on:
788788### Generated
789789- [ python v0.44.2] .
790790### Releases
791+ - [ PyPI v0.44.2] https://pypi.org/project/airbyte-api/0.44.2 - .
792+
793+ ## 2024-01-16 00:14:45
794+ ### Changes
795+ Based on:
796+ - OpenAPI Doc 1.0.0
797+ - Speakeasy CLI 1.141.1 (2.233.2) https://github.com/speakeasy-api/speakeasy
798+ ### Generated
799+ - [ python v0.44.2] .
800+ ### Releases
791801- [ PyPI v0.44.2] https://pypi.org/project/airbyte-api/0.44.2 - .
Original file line number Diff line number Diff line change @@ -23,8 +23,8 @@ class SDKConfiguration:
2323 language : str = 'python'
2424 openapi_doc_version : str = '1.0.0'
2525 sdk_version : str = '0.44.2'
26- gen_version : str = '2.228.1 '
27- user_agent : str = 'speakeasy-sdk/python 0.44.2 2.228.1 1.0.0 airbyte-api'
26+ gen_version : str = '2.233.2 '
27+ user_agent : str = 'speakeasy-sdk/python 0.44.2 2.233.2 1.0.0 airbyte-api'
2828 retry_config : RetryConfig = None
2929
3030 def get_server_details (self ) -> Tuple [str , Dict [str , str ]]:
Original file line number Diff line number Diff line change @@ -75,12 +75,12 @@ def do_request():
7575 if res .status_code == parsed_code :
7676 raise TemporaryError (res )
7777 except requests .exceptions .ConnectionError as exception :
78- if not retries .config .config .retry_connection_errors :
78+ if retries .config .config .retry_connection_errors :
7979 raise
8080
8181 raise PermanentError (exception ) from exception
8282 except requests .exceptions .Timeout as exception :
83- if not retries .config .config .retry_connection_errors :
83+ if retries .config .config .retry_connection_errors :
8484 raise
8585
8686 raise PermanentError (exception ) from exception
You can’t perform that action at this time.
0 commit comments