scheduler: typo

(cherry picked from commit 09e00e6d58)
This commit is contained in:
Girish Ramakrishnan
2024-03-12 17:54:51 +01:00
parent 264c94ff34
commit d09915bf6e

View File

@@ -146,7 +146,7 @@ async function sync() {
continue;
}
if (gSuspendedAppIds.has(app.d)) continue; // do not create jobs of suspended apps
if (gSuspendedAppIds.has(app.id)) continue; // do not create jobs of suspended apps
const cronJobs = await createJobs(app, schedulerConfig); // if docker is down, the next sync() will recreate everything for this app
gState[app.id] = { containerId: app.containerId, schedulerConfig, cronJobs };