Increase docker-tests retry count (#1026)
This commit is contained in:
parent
7d4d2ce4dc
commit
bdc39963c0
|
|
@ -36,7 +36,7 @@ POSTGRES_PORT = int(os.getenv("POSTGRESQL_PORT", "5432"))
|
||||||
POSTGRES_USER = os.getenv("POSTGRESQL_HOST", "testuser")
|
POSTGRES_USER = os.getenv("POSTGRESQL_HOST", "testuser")
|
||||||
REDIS_HOST = os.getenv("REDIS_HOST", "localhost")
|
REDIS_HOST = os.getenv("REDIS_HOST", "localhost")
|
||||||
REDIS_PORT = int(os.getenv("REDIS_PORT ", "6379"))
|
REDIS_PORT = int(os.getenv("REDIS_PORT ", "6379"))
|
||||||
RETRY_COUNT = 5
|
RETRY_COUNT = 8
|
||||||
RETRY_INTERVAL = 5 # Seconds
|
RETRY_INTERVAL = 5 # Seconds
|
||||||
|
|
||||||
logger = logging.getLogger(__name__)
|
logger = logging.getLogger(__name__)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue