diff options
author | Morris Jobke <hey@morrisjobke.de> | 2017-07-14 23:33:13 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-14 23:33:13 +0200 |
commit | aa0a1c41740f5ca07dc31f4569c18938a3104888 (patch) | |
tree | c68fd721c7948f6dee7a87b71a106e55bf4abdeb /tests | |
parent | a79447c6fdad379a1d254e2e379ac45b6acd0345 (diff) | |
parent | 649c47b199b188c4bb29d3256cc592d8759007cd (diff) | |
download | nextcloud-server-aa0a1c41740f5ca07dc31f4569c18938a3104888.tar.gz nextcloud-server-aa0a1c41740f5ca07dc31f4569c18938a3104888.zip |
Merge pull request #5724 from nextcloud/fix-drone
Fix drone
Diffstat (limited to 'tests')
-rw-r--r-- | tests/redis-cluster.config.php | 12 | ||||
-rw-r--r-- | tests/redis.config.php | 2 |
2 files changed, 7 insertions, 7 deletions
diff --git a/tests/redis-cluster.config.php b/tests/redis-cluster.config.php index c7df2a91854..e255d123f60 100644 --- a/tests/redis-cluster.config.php +++ b/tests/redis-cluster.config.php @@ -6,12 +6,12 @@ $CONFIG = [ 'memcache.locking' => '\\OC\\Memcache\\Redis', 'redis.cluster' => [ 'seeds' => [ // provide some/all of the cluster servers to bootstrap discovery, port required - 'localhost:7000', - 'localhost:7001', - 'localhost:7002', - 'localhost:7003', - 'localhost:7004', - 'localhost:7005' + 'cache-cluster:7000', + 'cache-cluster:7001', + 'cache-cluster:7002', + 'cache-cluster:7003', + 'cache-cluster:7004', + 'cache-cluster:7005' ], 'timeout' => 0.0, 'read_timeout' => 0.0, diff --git a/tests/redis.config.php b/tests/redis.config.php index 2ff46ec6728..9d3f1eca63e 100644 --- a/tests/redis.config.php +++ b/tests/redis.config.php @@ -5,7 +5,7 @@ $CONFIG = [ 'memcache.distributed' => '\\OC\\Memcache\\Redis', 'memcache.locking' => '\\OC\\Memcache\\Redis', 'redis' => [ - 'host' => 'localhost', + 'host' => 'cache', 'port' => 6379, 'timeout' => 0, ], |