From mboxrd@z Thu Jan 1 00:00:00 1970 From: jparsons@sourceware.org Date: 12 Oct 2006 17:27:26 -0000 Subject: [Cluster-devel] conga/luci/site/luci/Extensions cluster_adapte ... Message-ID: <20061012172726.3454.qmail@sourceware.org> List-Id: To: cluster-devel.redhat.com MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit CVSROOT: /cvs/cluster Module name: conga Changes by: jparsons at sourceware.org 2006-10-12 17:27:26 Modified files: luci/site/luci/Extensions: cluster_adapters.py Log message: yikes - spelling error Patches: http://sourceware.org/cgi-bin/cvsweb.cgi/conga/luci/site/luci/Extensions/cluster_adapters.py.diff?cvsroot=cluster&r1=1.102&r2=1.103 --- conga/luci/site/luci/Extensions/cluster_adapters.py 2006/10/12 17:08:25 1.102 +++ conga/luci/site/luci/Extensions/cluster_adapters.py 2006/10/12 17:27:26 1.103 @@ -2253,17 +2253,17 @@ if creation_status == RICCI_CONNECT_FAILURE: laststatus = item[1].getProperty(LAST_STATUS) if laststatus == INSTALL_TASK: #This means maybe node is rebooting - nodereport['statusindex'] = INSTALL_TASK - nodereport['statusmessage'] = RICCI_CONNECT_FAILURE_MSG + POSSIBLE_REBOOT_MESSAGE + node_report['statusindex'] = INSTALL_TASK + node_report['statusmessage'] = RICCI_CONNECT_FAILURE_MSG + POSSIBLE_REBOOT_MESSAGE elif laststatus == 0: - nodereport['statusindex'] = 0 - nodereport['statusmessage'] = RICCI_CONNECT_FAILURE_MSG + PRE_INSTALL + node_report['statusindex'] = 0 + node_report['statusmessage'] = RICCI_CONNECT_FAILURE_MSG + PRE_INSTALL elif laststatus == REBOOT_TASK: - nodereport['statusindex'] = REBOOT_TASK - nodereport['statusmessage'] = RICCI_CONNECT_FAILURE_MSG + PRE_CFG + node_report['statusindex'] = REBOOT_TASK + node_report['statusmessage'] = RICCI_CONNECT_FAILURE_MSG + PRE_CFG elif laststatus == SEND_CONF: - nodereport['statusindex'] = SEND_CONF - nodereport['statusmessage'] = RICCI_CONNECT_FAILURE_MSG + PRE_JOIN + node_report['statusindex'] = SEND_CONF + node_report['statusmessage'] = RICCI_CONNECT_FAILURE_MSG + PRE_JOIN nodereports.append(node_report) continue elif creation_status == -(INSTALL_TASK):