Skip to content
Snippets Groups Projects
Commit bb32aeed authored by Tim Kreuzer's avatar Tim Kreuzer
Browse files

deactivate compute node for new labs for today (due to a course which would like to avoid it)

parent a4a3ebb6
No related branches found
No related tags found
No related merge requests found
...@@ -148,6 +148,7 @@ define(["jquery", "home/utils"], function ( ...@@ -148,6 +148,7 @@ define(["jquery", "home/utils"], function (
const partitionsAllowed = (((dropdownOptions[service] || {})[system] || {})[account] || {})[project] || {}; const partitionsAllowed = (((dropdownOptions[service] || {})[system] || {})[account] || {})[project] || {};
const interactivePartitions = (systemInfo[system] || {}).interactivePartitions || []; const interactivePartitions = (systemInfo[system] || {}).interactivePartitions || [];
for (const partition of Object.keys(partitionsAllowed).sort()) { for (const partition of Object.keys(partitionsAllowed).sort()) {
if (id == "new-jupyterlab" && system == "JEDI" && partition == "all") continue;
if (interactivePartitions.includes(partition)) loginNodes.push(partition); if (interactivePartitions.includes(partition)) loginNodes.push(partition);
else computeNodes.push(partition); else computeNodes.push(partition);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment