Merge pull request #15336 from epma01/redis-patch

Fix Redis with unix socket #730
This commit is contained in:
Roeland Jago Douma 2019-05-15 08:43:20 +02:00 committed by GitHub
commit 9fe4d8e7a1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -72,8 +72,10 @@ class RedisFactory {
}
if (isset($config['port'])) {
$port = $config['port'];
} else {
} else if ($host[0] !== '/') {
$port = 6379;
} else {
$port = null;
}
if (isset($config['timeout'])) {
$timeout = $config['timeout'];