Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat: Add Cloud deploy functionality out of experimental status #419

Merged
merged 33 commits into from
Dec 10, 2024
Merged
Show file tree
Hide file tree
Changes from 18 commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
9b40875
clean up cloud functionality
aaronsteers Oct 15, 2024
4777d24
fix docs generation
aaronsteers Oct 15, 2024
6799b29
undo test skip for Cloud integration tests
aaronsteers Dec 6, 2024
1d4f53e
Merge remote-tracking branch 'origin/main' into aj/feat/cloud-deploy-…
aaronsteers Dec 6, 2024
1664110
Merge remote-tracking branch 'origin/main' into aj/feat/cloud-deploy-…
aaronsteers Dec 7, 2024
e8e948d
some name fixes
aaronsteers Dec 7, 2024
b435550
misc updates (not running tests yet)
aaronsteers Dec 7, 2024
354548e
more fixes
aaronsteers Dec 7, 2024
fe0ce9c
add: _paired_destination_name
aaronsteers Dec 7, 2024
be9225d
rename to 'cache_type_to_destination_type'
aaronsteers Dec 7, 2024
d8b40d1
fix more tests
aaronsteers Dec 7, 2024
7c9a6ac
multiple fixes
aaronsteers Dec 9, 2024
d58bf93
improve tests
aaronsteers Dec 9, 2024
e5b6ec4
xfail postgres merge support check
aaronsteers Dec 9, 2024
413abf4
update tests
aaronsteers Dec 9, 2024
3e16ee4
fix more tests
aaronsteers Dec 9, 2024
9d52230
improve tests
aaronsteers Dec 9, 2024
90bf1a2
lint fixes
aaronsteers Dec 9, 2024
2ab2e68
lint fixes
aaronsteers Dec 9, 2024
8a1092e
ignore warnings
aaronsteers Dec 9, 2024
c8a41b5
chore: convert if/then to lookup mapping
aaronsteers Dec 10, 2024
452bc0e
fixes (full code review)
aaronsteers Dec 10, 2024
13a4656
apply fixes and suggestions
aaronsteers Dec 10, 2024
e4b010f
delete redundant test
aaronsteers Dec 10, 2024
b8d63f0
fixes and apply suggestions
aaronsteers Dec 10, 2024
349df46
apply suggestion (class var)
aaronsteers Dec 10, 2024
6c3127e
improve exception handling
aaronsteers Dec 10, 2024
6325a53
Merge remote-tracking branch 'origin/main' into aj/feat/cloud-deploy-…
aaronsteers Dec 10, 2024
1bdcab1
fix list_destinations
aaronsteers Dec 10, 2024
ec5398b
fix return type
aaronsteers Dec 10, 2024
e4397d4
import types from api package
aaronsteers Dec 10, 2024
34f925e
Auto-fix lint and format issues
Dec 10, 2024
93fb13c
Auto-fix lint issues (unsafe)
Dec 10, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions airbyte/_message_iterators.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ def generator() -> Generator[AirbyteMessage, None, None]:
yield AirbyteMessage.model_validate_json(next_line)
except pydantic.ValidationError:
# Handle JSON decoding errors (optional)
raise ValueError("Invalid JSON format") # noqa: B904, TRY003
raise ValueError("Invalid JSON format") # noqa: B904

return cls(generator())

Expand All @@ -149,7 +149,7 @@ def generator() -> Generator[AirbyteMessage, None, None]:
yield AirbyteMessage.model_validate_json(line)
except pydantic.ValidationError:
# Handle JSON decoding errors (optional)
raise ValueError(f"Invalid JSON format in input string: {line}") # noqa: B904, TRY003
raise ValueError(f"Invalid JSON format in input string: {line}") # noqa: B904

return cls(generator())

Expand Down Expand Up @@ -193,6 +193,6 @@ def generator() -> Generator[AirbyteMessage, None, None]:
# Handle JSON decoding errors
current_file_buffer.close()
current_file_buffer = None
raise ValueError("Invalid JSON format") # noqa: B904, TRY003
raise ValueError("Invalid JSON format") # noqa: B904

return cls(generator())
Loading
Loading