Use the JobID as the Version ID for mirage job versions
This commit is contained in:
parent
0b83575106
commit
ab54583878
|
@ -12,6 +12,12 @@ export default Factory.extend({
|
|||
jobId: null,
|
||||
version: 0,
|
||||
|
||||
// ID is used for record tracking within Mirage,
|
||||
// but Nomad uses the JobID as the version ID.
|
||||
tempVersionId() {
|
||||
return this.job.id;
|
||||
},
|
||||
|
||||
// Directive to restrict any related deployments from having a 'running' status
|
||||
noActiveDeployment: false,
|
||||
|
||||
|
|
|
@ -16,6 +16,9 @@ export default ApplicationSerializer.extend({
|
|||
hash.Diffs.push(version.Diff);
|
||||
delete version.Diff;
|
||||
|
||||
// ID is used for record tracking within Mirage,
|
||||
// but Nomad uses the JobID as the version ID.
|
||||
version.ID = version.TempVersionID;
|
||||
hash.Versions.push(version);
|
||||
return hash;
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue