You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
=====================================================================
FAILED TEST SUMMARY
---------------------------------------------------------------------
memcache::connect() with unix domain socket [tests/035.phpt]
=====================================================================
⚡ make: *** [Makefile:133: test] Error 1
The problem is, that passing NULL as the second argument to memcache_connect() is deprecated in PHP 8.1 and triggers an error during the tests. I managed to run the tests using the following patch.
Workaround
sed -i 's/memcache_connect(\$domainsocket, null)/memcache_connect(\$domainsocket, 0)/' tests/035.phpt
However, i guess that the whole test-case should be removed or only be executed conditionally.
The text was updated successfully, but these errors were encountered:
The problem is, that passing NULL as the second argument to memcache_connect() is deprecated in PHP 8.1 and triggers an error during the tests. I managed to run the tests using the following patch.
After updating to PHP 8.1 test 035 using a local memcached with domain sockets fails.
Build
Result
The problem is, that passing NULL as the second argument to memcache_connect() is deprecated in PHP 8.1 and triggers an error during the tests. I managed to run the tests using the following patch.
Workaround
However, i guess that the whole test-case should be removed or only be executed conditionally.
The text was updated successfully, but these errors were encountered: