File tree 5 files changed +16
-7
lines changed
5 files changed +16
-7
lines changed Original file line number Diff line number Diff line change @@ -399,7 +399,6 @@ def _execute(
399
399
stdin : IO [str ] | AirbyteMessageIterator | None = None ,
400
400
* ,
401
401
progress_tracker : ProgressTracker | None = None ,
402
- env : dict [str , str ] | None = None ,
403
402
) -> Generator [AirbyteMessage , None , None ]:
404
403
"""Execute the connector with the given arguments.
405
404
Original file line number Diff line number Diff line change @@ -225,7 +225,7 @@ def env_vars(self) -> dict[str, str]:
225
225
By default, this is an empty dict. Subclasses may override this method
226
226
to provide custom environment variables.
227
227
"""
228
- result = cast ( dict [ str , str ], os .environ .copy () )
228
+ result = os .environ .copy ()
229
229
if self .http_cache :
230
230
result .update (self .http_cache .get_env_vars ())
231
231
Original file line number Diff line number Diff line change @@ -106,7 +106,7 @@ def execute(
106
106
stdin : IO [str ] | AirbyteMessageIterator | None = None ,
107
107
) -> Iterator [str ]:
108
108
"""Execute the declarative source."""
109
- _ = stdin , env # Not used
109
+ _ = stdin # Not used
110
110
source_entrypoint = AirbyteEntrypoint (self .declarative_source )
111
111
112
112
mapped_args : list [str ] = self .map_cli_args (args )
Original file line number Diff line number Diff line change 1
1
# Copyright (c) 2023 Airbyte, Inc., all rights reserved.
2
2
from __future__ import annotations
3
3
4
- import http
5
4
import logging
6
5
import shutil
7
6
import tempfile
8
7
from pathlib import Path
9
- from typing import NoReturn
8
+ from typing import TYPE_CHECKING , NoReturn
10
9
11
10
from airbyte import exceptions as exc
12
11
from airbyte ._executors .base import Executor
13
12
from airbyte .constants import TEMP_DIR_OVERRIDE
14
- from airbyte .http_caching .cache import AirbyteConnectorCache
13
+
14
+
15
+ if TYPE_CHECKING :
16
+ from airbyte .http_caching .cache import AirbyteConnectorCache
15
17
16
18
17
19
logger = logging .getLogger ("airbyte" )
Original file line number Diff line number Diff line change 20
20
21
21
22
22
if TYPE_CHECKING :
23
+ from airbyte .http_caching .cache import AirbyteConnectorCache
23
24
from airbyte .sources .registry import ConnectorMetadata
24
25
25
26
@@ -32,6 +33,7 @@ def __init__(
32
33
target_version : str | None = None ,
33
34
pip_url : str | None = None ,
34
35
install_root : Path | None = None ,
36
+ http_cache : AirbyteConnectorCache | None = None ,
35
37
) -> None :
36
38
"""Initialize a connector executor that runs a connector in a virtual environment.
37
39
@@ -42,8 +44,14 @@ def __init__(
42
44
pip_url: (Optional.) The pip URL of the connector to install.
43
45
install_root: (Optional.) The root directory where the virtual environment will be
44
46
created. If not provided, the current working directory will be used.
47
+ http_cache: (Optional.) The HTTP cache to use for downloading the connector.
45
48
"""
46
- super ().__init__ (name = name , metadata = metadata , target_version = target_version )
49
+ super ().__init__ (
50
+ name = name ,
51
+ metadata = metadata ,
52
+ target_version = target_version ,
53
+ http_cache = http_cache ,
54
+ )
47
55
48
56
if not pip_url and metadata and not metadata .pypi_package_name :
49
57
raise exc .AirbyteConnectorNotPyPiPublishedError (
You can’t perform that action at this time.
0 commit comments