Skip to content

Commit

Permalink
fix: missing name of exec
Browse files Browse the repository at this point in the history
  • Loading branch information
JaeAeich committed Aug 22, 2024
1 parent 46bbe2a commit 099c528
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tesk/api/kubernetes/convert/converter.py
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ def from_tes_executor_to_k8s_job( # noqa: PLR0913
)

# Set executors name based on taskmaster's job name
Job(executor_job).change_job_name(new_name=generated_task_id)
Job(executor_job).change_job_name(Task(taskmaster_name=generated_task_id).get_executor_name(executor_index))

if executor_job.metadata is None:
executor_job.metadata = V1ObjectMeta()
Expand Down

0 comments on commit 099c528

Please sign in to comment.