Skip to content

Commit

Permalink
revert: undo intentional cdk breakage
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronsteers committed Dec 5, 2024
1 parent f6eb431 commit 25590cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion airbyte_cdk/sources/declarative/declarative_source.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@ def check_connection(
and the "error" object should describe what went wrong.
The error object will be cast to string to display the problem to the user.
"""
return None # self.connection_checker.check_connection(self, logger, config) TODO: Undo after we confirm this breaks the pipeline
return self.connection_checker.check_connection(self, logger, config)

0 comments on commit 25590cd

Please sign in to comment.