mirror of
https://github.com/balena-os/balena-supervisor.git
synced 2025-05-31 06:41:05 +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(
|
||||
_.map(app.services, (svc) => [
|
||||
svc.serviceName,
|
||||
svc.containerId.substr(0, 12),
|
||||
svc.containerId != null ? svc.containerId.substr(0, 12) : '',
|
||||
]),
|
||||
);
|
||||
return {
|
||||
|
Loading…
x
Reference in New Issue
Block a user