Merge pull request #2653 from justinsb/default_cluster_monitoring

Default ENABLE_CLUSTER_MONITORING to false
This commit is contained in:
Brendan Burns 2014-12-08 15:53:35 -08:00
commit 30656d7522

View File

@ -106,14 +106,14 @@ function ensure-temp-dir {
}
function setup-monitoring {
if [[ "${ENABLE_CLUSTER_MONITORING}" == "true" ]]; then
if [[ "${ENABLE_CLUSTER_MONITORING:-false}" == "true" ]]; then
# TODO: Implement this.
echo "Monitoring not currently supported on AWS"
fi
}
function teardown-monitoring {
if [[ "${ENABLE_CLUSTER_MONITORING}" == "true" ]]; then
if [[ "${ENABLE_CLUSTER_MONITORING:-false}" == "true" ]]; then
# TODO: Implement this.
echo "Monitoring not currently supported on AWS"
fi