diff --git a/beat/web/backend/models.py b/beat/web/backend/models.py index 1e2c3a74b9ccdf28504faca80db6cd8c56b2f8e7..f8b4282f2e98beea9255130b6222edd72f970ecf 100755 --- a/beat/web/backend/models.py +++ b/beat/web/backend/models.py @@ -1422,8 +1422,9 @@ class JobSplit(models.Model): JobSplit.host = Host(images_cache=docker_images_cache) JobSplit.host.setup(raise_on_errors=not(getattr(settings, 'TEST_CONFIGURATION', False))) - self.executor = beat.core.execution.Executor(JobSplit.host, settings.PREFIX, config, - cache) + self.executor = beat.core.execution.DockerExecutor( + JobSplit.host, settings.PREFIX, config, cache + ) if not self.executor.valid: err = ''