mirror of
https://github.com/balena-os/balena-supervisor.git
synced 2025-02-21 02:01:35 +00:00
Merge pull request #1422 from balena-io/fix-containerId-undefined
bug: Fix undefined containerId object
This commit is contained in:
commit
fa4aa9498a
@ -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