Skip to content

Commit

Permalink
formatting again
Browse files Browse the repository at this point in the history
  • Loading branch information
lmossman committed Oct 18, 2024
1 parent 5b62704 commit a93d329
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,10 @@ def _read_stream(
# If it matches, don't yield this as we don't need to show this in the Builder.
# This is somewhat brittle as it relies on the message string, but if they drift then the worst case
# is that this message will be shown in the Builder.
if traced_exception.message is not None and "During the sync, the following streams did not sync successfully" in traced_exception.message:
if (
traced_exception.message is not None
and "During the sync, the following streams did not sync successfully" in traced_exception.message
):
return
yield traced_exception.as_airbyte_message()
except Exception as e:
Expand Down

0 comments on commit a93d329

Please sign in to comment.