Skip to content

Commit 6136336

Browse files
sophiecuiyclaude
andauthored
fix: use message=None instead of message="" in job_orchestrator (#935)
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
1 parent b6abaed commit 6136336

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

airbyte_cdk/sources/declarative/async_job/job_orchestrator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -481,7 +481,7 @@ def create_and_get_completed_partitions(self) -> Iterable[AsyncPartition]:
481481
# We emitted traced message but we didn't break on non_breaking_exception. We still need to raise an exception so that the
482482
# call of `create_and_get_completed_partitions` knows that there was an issue with some partitions and the sync is incomplete.
483483
raise AirbyteTracedException(
484-
message="",
484+
message=None,
485485
internal_message="\n".join(
486486
[
487487
filter_secrets(exception.__repr__())

0 commit comments

Comments
 (0)