File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -26,6 +26,8 @@ class DEFAULT(ConfigBase):
26
26
# similar to DATALOADER_LIST but only to run a single dataloader. overrides DATALOADER_LIST
27
27
DATALOADER_SINGLE = None
28
28
29
+ SKIP_DATALOADER_LIST = []
30
+
29
31
# DOCKER_DEAMON_BASE_URL = "tcp://127.0.0.1:1234"
30
32
DOCKER_DEAMON_BASE_URL = "unix://var/run/docker.sock"
31
33
Original file line number Diff line number Diff line change @@ -186,6 +186,8 @@ def run_datasource_containers():
186
186
187
187
for datasource in sorted_datasources :
188
188
envs = env_vars .copy ()
189
+ if datasource ["name" ] in config .SKIP_DATALOADER_LIST :
190
+ continue
189
191
if "envs" in datasource :
190
192
envs .update (datasource ["envs" ])
191
193
log .info ("###########################" .format (datasource ["dockerimage" ]))
You can’t perform that action at this time.
0 commit comments