Skip to content

Commit 2982dca

Browse files
committed
docstring
1 parent c403e34 commit 2982dca

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

airbyte_cdk/manifest_server/routers/manifest.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -131,10 +131,9 @@ def resolve(request: ResolveRequest) -> ManifestResponse:
131131
@router.post("/full_resolve", operation_id="fullResolve")
132132
def full_resolve(request: FullResolveRequest) -> ManifestResponse:
133133
"""
134-
Fully resolve a manifest including dynamic streams.
134+
Fully resolve a manifest, including dynamic streams.
135135
136-
Generates dynamic streams up to the specified limit and includes
137-
them in the resolved manifest.
136+
This is a similar operation to resolve, but has an extra step which generates streams from dynamic stream templates if the manifest contains any. This is used when a user clicks the generate streams button on a stream template in the Builder UI
138137
"""
139138
source = safe_build_source(request.manifest.model_dump(), request.config.model_dump())
140139
manifest = {**source.resolved_manifest}

0 commit comments

Comments
 (0)