Skip to content

Commit 524e481

Browse files
committed
Add except clause for AirbyteTracedException
1 parent 9ea30e0 commit 524e481

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

airbyte_cdk/connector_builder/connector_builder_handler.py

+2
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,8 @@ def full_resolve_manifest(source: ManifestDeclarativeSource) -> AirbyteMessage:
133133
stream="full_resolve_manifest",
134134
),
135135
)
136+
except AirbyteTracedException as exc:
137+
return exc.as_airbyte_message()
136138
except Exception as exc:
137139
error = AirbyteTracedException.from_exception(
138140
exc, message=f"Error full resolving manifest: {str(exc)}"

0 commit comments

Comments
 (0)