Skip to content

Commit

Permalink
Fix queue name overflowing label limit in production
Browse files Browse the repository at this point in the history
  • Loading branch information
marcellp committed Aug 20, 2021
1 parent 85f0488 commit 66f0af5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/api/general-services/work-submit/create-worker-k8s.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ const createWorkerResources = async (service) => {
op: 'add', path: '/metadata/labels/experimentId', value: experimentId,
},
{
op: 'add', path: '/metadata/labels/workQueueName', value: service.workQueueName,
op: 'add', path: '/metadata/labels/workQueueHash', value: service.workerHash,
},
];

Expand Down

0 comments on commit 66f0af5

Please sign in to comment.