Skip to content

Commit 9b3b42b

Browse files
committed
ci: regenerated with OpenAPI Doc 1.0.0, Speakeasy CLI 1.141.1
1 parent 00e7738 commit 9b3b42b

File tree

4 files changed

+15
-5
lines changed

4 files changed

+15
-5
lines changed

.speakeasy/gen.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

RELEASES.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff 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 - .

src/airbyte/sdkconfiguration.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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]]:

src/airbyte/utils/retries.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)