tests: fix rowcache_invalidator flakyness

memcache seems to start up slow sometimes. Give the sanity check
a higher timeout to account for it.
This commit is contained in:
Sugu Sougoumarane 2015-12-10 15:49:28 -08:00
Родитель 15019d1fb4
Коммит b42d25c142
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -153,7 +153,7 @@ func (cp *CachePool) startCacheService() {
for {
c, err := cacheservice.Connect(cacheservice.Config{
Address: cp.socket,
Timeout: 30 * time.Millisecond,
Timeout: 10 * time.Second,
})
if err != nil {