@@ -2,6 +2,9 @@ Ambari Change log
Release 0.x.x - unreleased
+ AMBARI-216. Remove sleeps to speed simulations of installs. (Vikram Dixit
+ via omalley)
+
AMBARI-215. Fix description for dfs_data_dir. (hitesh via omalley)
AMBARI-209. Node selection should ignore failed nodes. (hitesh via omalley)
@@ -15,7 +15,8 @@ $dbAccessor = new HMCDBAccessor($GLOBALS["DB_PATH"]);
function getCommandLine() {
$cmdLine = "hostname ;";
- $cmdLine = $cmdLine . 'sleep $[ $RANDOM % 5 ]; ';
+ // uncomment following line for demo purposes.
+ // $cmdLine = $cmdLine . 'sleep $[ $RANDOM % 5 ]; ';
return $cmdLine;
}
@@ -33,7 +33,8 @@ function getCommandLine() {
$cmdLine = $freeCmd.$echoCmd.$cpuCmd.$echoCmd.$archCmd.$echoCmd.$mntPointCmd.$echoCmd.$osTypeCmd.$echoCmd.$osInfoCmd.$echoCmd.$ipCmd.$echoCmd.$publicDnsCmd.$echoCmd.$privateDnsCmd.$echoCmd;