worker: drop ImageName from the OSBuildJob struct

The `ImageName` in `OSBuildJob` is not used any more by any API
implementation 	or any worker job implementation. Drop it from the
structure.
This commit is contained in:
Tomas Hozza 2022-06-29 16:55:25 +02:00 committed by Tom Gundersen
parent 6a12ce1998
commit 4e26ba82d0
2 changed files with 32 additions and 8 deletions

View file

@ -20,7 +20,6 @@ type OSBuildJob struct {
// Index of the ManifestJobByIDResult instance in the job's dynamic arguments slice
ManifestDynArgsIdx *int `json:"manifest_dyn_args_idx,omitempty"`
Targets []*target.Target `json:"targets,omitempty"`
ImageName string `json:"image_name,omitempty"`
Exports []string `json:"export_stages,omitempty"`
PipelineNames *PipelineNames `json:"pipeline_names,omitempty"`
}