Merge pull request #146 from fedotov-as/hotfix/compatibility

Add compatibility memcached with msgpack
pull/147/head
Michele Locati 2020-05-24 14:36:54 +02:00 committed by GitHub
commit ded00059c6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 1 deletions

View File

@ -1304,7 +1304,11 @@ installPECLModule() {
case "$2" in case "$2" in
http) http)
# http must be loaded after raphf and propro # http must be loaded after raphf and propro
docker-php-ext-enable --ini-name "zzz-$2.ini" "$2" docker-php-ext-enable --ini-name "xx-php-ext-$2.ini" "$2"
;;
memcached)
# memcached must be loaded after msgpack
docker-php-ext-enable --ini-name "xx-php-ext-$2.ini" "$2"
;; ;;
*) *)
docker-php-ext-enable "$2" docker-php-ext-enable "$2"