KEYSTONE_CATALOG_BACKEND is deprecated

this removes it
see: http://lists.openstack.org/pipermail/openstack-dev/2016-February/086272.htm

Change-Id: Idfbec51799a714433d295d6223d1126cb3a0be36
This commit is contained in:
gordon chung 2016-02-10 17:37:57 -05:00
parent f2d147804d
commit b914ad9060
1 changed files with 7 additions and 9 deletions

View File

@ -123,15 +123,13 @@ function _aodh_create_accounts {
create_service_user "aodh" "admin"
if [[ "$KEYSTONE_CATALOG_BACKEND" = 'sql' ]]; then
local aodh_service=$(get_or_create_service "aodh" \
"alarming" "OpenStack Alarming Service")
get_or_create_endpoint $aodh_service \
"$REGION_NAME" \
"$(aodh_service_url)" \
"$(aodh_service_url)" \
"$(aodh_service_url)"
fi
local aodh_service=$(get_or_create_service "aodh" \
"alarming" "OpenStack Alarming Service")
get_or_create_endpoint $aodh_service \
"$REGION_NAME" \
"$(aodh_service_url)" \
"$(aodh_service_url)" \
"$(aodh_service_url)"
fi
}