Skip to content
Snippets Groups Projects
Commit 7ef490d2 authored by Valentin Rigal's avatar Valentin Rigal Committed by Bastien Abadie
Browse files

Avoid invalidating workers with a configuration set via the docker command

parent a1981f31
No related branches found
No related tags found
1 merge request!2501Support feature worker declaration from gitlab.teklia.com
This commit is part of merge request !2501. Comments created here will be created in the context of that merge request.
......@@ -147,8 +147,6 @@ class Command(BaseCommand):
self.stdout.write("Creating new worker version")
max_version = worker.versions.aggregate(max_version=Max("version"))["max_version"] or 0
if configuration.get("docker") is None and docker_command:
configuration["docker"] = {"command": docker_command}
worker_version = worker.versions.create(
docker_image_iid=docker_image,
feature=feature,
......@@ -259,4 +257,7 @@ class Command(BaseCommand):
if worker is not None:
self.update_feature_from_worker(feature, **worker)
else:
self.update_feature(feature, **feature_config)
configuration = {}
if (command := feature_config["command"]):
configuration["docker"] = {"command": command}
self.update_feature(feature, **feature_config, configuration=configuration)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment