fixed test timing in http request test

pull/39/head
Ciro 2022-06-01 10:53:46 -03:00
rodzic 55314a0e23
commit fdef1bbb2a
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -10,7 +10,7 @@ redis_pool = redis.ConnectionPool(host='localhost', port=6379, db=0)
redis_conection = redis.Redis(connection_pool=redis_pool)
# 2 LEVEL CACHE (Redis to share amoung workers, Memory to be much faster)
# cache in memory is 5s, cache in redis is 10s duration
cache = TwoLevelCache(redis_conection, 10, 10)
cache = TwoLevelCache(redis_conection, 5, 10)
###
# Model