File tree Expand file tree Collapse file tree
airbyte_cdk/manifest_server/command_processor Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1414 AirbyteStateMessage ,
1515 ConfiguredAirbyteCatalog ,
1616)
17- from airbyte_cdk .models .airbyte_protocol_serializers import AirbyteMessageSerializer
18- from airbyte_cdk .sources .declarative .manifest_declarative_source import (
19- ManifestDeclarativeSource ,
17+ from airbyte_cdk .sources .declarative .concurrent_declarative_source import (
18+ ConcurrentDeclarativeSource ,
2019)
2120from airbyte_cdk .test .entrypoint_wrapper import AirbyteEntrypointException , EntrypointOutput
2221
2322
2423class ManifestCommandProcessor :
25- _source : ManifestDeclarativeSource
24+ _source : ConcurrentDeclarativeSource [ Optional [ List [ AirbyteStateMessage ]]]
2625 _logger = logging .getLogger ("airbyte.manifest-server" )
2726
28- def __init__ (self , source : ManifestDeclarativeSource ) -> None :
27+ def __init__ (
28+ self , source : ConcurrentDeclarativeSource [Optional [List [AirbyteStateMessage ]]]
29+ ) -> None :
2930 self ._source = source
3031
3132 def test_read (
You can’t perform that action at this time.
0 commit comments