mirror of
https://github.com/balena-os/balena-supervisor.git
synced 2025-04-06 02:46:41 +00:00
Fix search for app leftover locks
The leftover locks search was creating an array rather than an object keyed by the appId. This could affect the lock cleanup and make leftover locks from one app affect the install of the app in local mode. Change-type: patch
This commit is contained in:
parent
49b18b4a37
commit
d475b1d830
@ -187,8 +187,12 @@ export async function inferNextSteps(
|
||||
const currentAppIds = Object.keys(currentApps).map((i) => parseInt(i, 10));
|
||||
const targetAppIds = Object.keys(targetApps).map((i) => parseInt(i, 10));
|
||||
|
||||
const withLeftoverLocks = await Promise.all(
|
||||
currentAppIds.map((id) => hasLeftoverLocks(id)),
|
||||
const withLeftoverLocks = Object.fromEntries(
|
||||
await Promise.all(
|
||||
currentAppIds.map(
|
||||
async (id) => [id, await hasLeftoverLocks(id)] as [number, boolean],
|
||||
),
|
||||
),
|
||||
);
|
||||
const bootTime = getBootTime();
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user