Skip to content

Commit 9301599

Browse files
fix(mcp): Change run_cloud_sync wait default to False (#892)
Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
1 parent ed8f42c commit 9301599

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

airbyte/mcp/cloud_ops.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -416,8 +416,12 @@ def run_cloud_sync(
416416
wait: Annotated[
417417
bool,
418418
Field(
419-
description="Whether to wait for the sync to complete.",
420-
default=True,
419+
description=(
420+
"Whether to wait for the sync to complete. Since a sync can take between several "
421+
"minutes and several hours, this option is not recommended for most "
422+
"scenarios."
423+
),
424+
default=False,
421425
),
422426
],
423427
wait_timeout: Annotated[

0 commit comments

Comments
 (0)