Skip to content

Commit 51cf37a

Browse files
author
Mikael Ronström
committed
WL#11128: Post-push fix
1 parent 131ac83 commit 51cf37a

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

storage/ndb/mcc/frontend/js/mcc/configuration/deploy.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1587,7 +1587,6 @@ function startCluster() {
15871587
++currseq;
15881588
updateProgressAndStartNext();
15891589
} else {
1590-
mcc.util.dbg(commands[currseq].isDone);
15911590
mcc.util.dbg("returned false for "+commands[currseq].progTitle)
15921591
timeout = setTimeout(onTimeout, 2000);
15931592
}
@@ -1607,7 +1606,6 @@ function startCluster() {
16071606

16081607
function onReply(rep) {
16091608
mcc.util.dbg("Got reply for: "+commands[currseq].progTitle);
1610-
mcc.util.dbg(rep.body);
16111609
// Start status polling timer after mgmd has been started
16121610
// Ignore errors since it may not be available right away
16131611
if (currseq == 0) { mcc.gui.startStatusPoll(false); }
@@ -1742,7 +1740,6 @@ function stopCluster() {
17421740
function onReply(rep) {
17431741
mcc.util.dbg("Got reply for: "+commands[currseq].progTitle);
17441742
var cc = commands[currseq];
1745-
mcc.util.dbg(rep.body, cc)
17461743
if (cc.msg.isCommand) {
17471744
result = cc.check_result(rep);
17481745
if (result == "retry") {

storage/ndb/mcc/frontend/js/mcc/gui/wizard.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -620,6 +620,7 @@ var configWizardPages = {
620620
enter: function () {
621621
mcc.util.dbg("Enter configWizardDeployConfig");
622622
mcc.configuration.setupContext().then(function () {
623+
dijit.byId("configWizardInstallCluster").setDisabled(true);
623624
mcc.gui.deploymentTreeSetup();
624625
mcc.gui.startStatusPoll(true);
625626
var clRunning = mcc.configuration.clServStatus();

0 commit comments

Comments
 (0)