Skip to content

Commit c861ddb

Browse files
committed
minor
1 parent db78411 commit c861ddb

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

services/static-webserver/client/source/class/osparc/node/BootOptionsView.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,9 @@ qx.Class.define("osparc.node.BootOptionsView", {
6464
// add timeout to make sure the node is saved before starting it
6565
setTimeout(() => {
6666
buttonsLayout.setEnabled(true);
67-
// node.requestStartNode();
67+
if (!node.getStudy().getDisableServiceAutoStart()) {
68+
node.requestStartNode();
69+
}
6870
}, osparc.desktop.StudyEditor.AUTO_SAVE_INTERVAL);
6971
}
7072
}, this);

services/static-webserver/client/source/class/osparc/node/LifeCycleView.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,9 @@ qx.Class.define("osparc.node.LifeCycleView", {
134134
// add timeout to make sure the node is saved before starting it
135135
setTimeout(() => {
136136
updateButton.setFetching(false);
137-
node.requestStartNode();
137+
if (!node.getStudy().getDisableServiceAutoStart()) {
138+
node.requestStartNode();
139+
}
138140
}, osparc.desktop.StudyEditor.AUTO_SAVE_INTERVAL);
139141
});
140142

0 commit comments

Comments
 (0)