mirror of
https://github.com/balena-os/balena-supervisor.git
synced 2025-06-01 15:20:51 +00:00
bug: Fix undefined containerId object
Change-type: patch Signed-off-by: Rich Bayliss <rich@balena.io>
This commit is contained in:
parent
54597d6824
commit
59561132cc
@ -135,7 +135,7 @@ export function safeAppClone(app) {
|
|||||||
const containerIdForService = _.fromPairs(
|
const containerIdForService = _.fromPairs(
|
||||||
_.map(app.services, (svc) => [
|
_.map(app.services, (svc) => [
|
||||||
svc.serviceName,
|
svc.serviceName,
|
||||||
svc.containerId.substr(0, 12),
|
svc.containerId != null ? svc.containerId.substr(0, 12) : '',
|
||||||
]),
|
]),
|
||||||
);
|
);
|
||||||
return {
|
return {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user