From d09915bf6e87fb3996656f6cf8d5151f0bdb577e Mon Sep 17 00:00:00 2001 From: Girish Ramakrishnan Date: Tue, 12 Mar 2024 17:54:51 +0100 Subject: [PATCH] scheduler: typo (cherry picked from commit 09e00e6d580bb73e3ec829ecd633282298477cfe) --- src/scheduler.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scheduler.js b/src/scheduler.js index 96ca4c49a..5add69f6e 100644 --- a/src/scheduler.js +++ b/src/scheduler.js @@ -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 };