Merge "Fix memcached host address." into stable/train

This commit is contained in:
Zuul 2021-02-16 12:55:14 +00:00 committed by Gerrit Code Review
commit d697c7c816
2 changed files with 2 additions and 1 deletions

View File

@ -327,7 +327,7 @@ function configure_inspector {
if [[ "$IRONIC_INSPECTOR_STANDALONE" == "False" ]]; then
# memcached listens localhost instead of $SERVICE_HOST, which is exactly the default value,
# but set explicitly in case that changed.
inspector_iniset coordination backend_url "memcached://localhost:11211"
inspector_iniset coordination backend_url "memcached://127.0.0.1:11211"
fi
if is_service_enabled swift; then

View File

@ -57,6 +57,7 @@
devstack_localrc:
USE_PYTHON3: True
IRONIC_INSPECTOR_STANDALONE: False
MEMCACHE_SERVERS: 127.0.0.1:11211
devstack_services:
s-account: True
s-container: True