Skip to content

Commit

Permalink
feat(Airbyte-cdk): do not raise exception on missing stream by default (
Browse files Browse the repository at this point in the history
#46310)

Signed-off-by: Artem Inzhyyants <[email protected]>
  • Loading branch information
artem1205 authored Oct 7, 2024
1 parent 357767d commit 7514e23
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion airbyte-cdk/python/airbyte_cdk/sources/abstract_source.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ def _serialize_exception(

@property
def raise_exception_on_missing_stream(self) -> bool:
return True
return False

def _read_stream(
self,
Expand Down

0 comments on commit 7514e23

Please sign in to comment.