Skip to content

Commit

Permalink
Merge pull request #338 from stackhpc/upstream/yoga-2024-09-02
Browse files Browse the repository at this point in the history
Synchronise yoga with upstream
  • Loading branch information
priteau authored Sep 5, 2024
2 parents c3b64f4 + 09fa1b6 commit 6aca074
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
10 changes: 10 additions & 0 deletions docker/base/httpd_setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -39,3 +39,13 @@ EOF
/usr/libexec/httpd-ssl-gencerts
fi
fi

# The default system locale with unicode support
LANG=C.UTF-8

# Override the default locale if configured
if [[ "${KOLLA_BASE_DISTRO}" =~ debian|ubuntu ]]; then
[ -f /etc/default/locale ] && . /etc/default/locale
else
[ -f /etc/locale.conf ] && . /etc/locale.conf
fi
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
fixes:
- |
Apache services like Keystone now started with correct unicode locale.
Keystone under Apache on Ubuntu will fail with a UnicodeEncodeError
when LDAP driver and DEBUG are enabled.
`LP#2076453 <https://bugs.launchpad.net/kolla/+bug/2076453>`__

0 comments on commit 6aca074

Please sign in to comment.